Julia Luna
2 years ago
2 changed files with 25 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||||
|
# Generated by Django 4.0.5 on 2022-06-18 17:20 |
||||||
|
|
||||||
|
from django.db import migrations, models |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
initial = True |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.CreateModel( |
||||||
|
name='Domain', |
||||||
|
fields=[ |
||||||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
||||||
|
('fqdn', models.CharField(max_length=255, unique=True, verbose_name='FQDN')), |
||||||
|
('name', models.CharField(max_length=255, verbose_name='display name')), |
||||||
|
], |
||||||
|
), |
||||||
|
] |
Loading…
Reference in new issue