mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
25 lines
715 B
Python
25 lines
715 B
Python
# Generated by Django 3.1.6 on 2021-04-12 18:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Domain',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('domain_name', models.CharField(blank=True, max_length=300, null=True, unique=True)),
|
|
('domain_description', models.TextField()),
|
|
('insert_date', models.DateTimeField()),
|
|
('last_scan_date', models.DateTimeField(null=True)),
|
|
],
|
|
),
|
|
]
|