mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 12:08:40 +02:00
Readd migrations
This commit is contained in:
parent
5712596d19
commit
f60b79e13b
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
# Generated by Django 4.2.10 on 2024-06-20 21:21
|
||||
# Generated by Django 4.2.10 on 2024-06-21 18:15
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
@ -17,7 +17,7 @@ class Migration(migrations.Migration):
|
|||
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
||||
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||
("updated_at", models.DateTimeField(auto_now=True)),
|
||||
("name", models.CharField(blank=True, help_text="Suborganization", null=True, unique=True)),
|
||||
("name", models.CharField(help_text="Suborganization", max_length=1000, unique=True)),
|
||||
("portfolio", models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to="registrar.portfolio")),
|
||||
],
|
||||
options={
|
||||
|
@ -30,7 +30,7 @@ class Migration(migrations.Migration):
|
|||
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
||||
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||
("updated_at", models.DateTimeField(auto_now=True)),
|
||||
("name", models.CharField(blank=True, help_text="Domain group", null=True, unique=True)),
|
||||
("name", models.CharField(help_text="Domain group", unique=True)),
|
||||
("domains", models.ManyToManyField(blank=True, to="registrar.domaininformation")),
|
||||
("portfolio", models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to="registrar.portfolio")),
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue