mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-05 18:53:28 +02:00
Convert submitter to null on delete
This commit is contained in:
parent
79f020b402
commit
2acef3f3d9
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ class Migration(migrations.Migration):
|
|||
blank=True,
|
||||
help_text='Person listed under "your contact information" in the request form',
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
related_name="submitted_domain_requests_information",
|
||||
to="registrar.contact",
|
||||
),
|
||||
|
@ -30,7 +30,7 @@ class Migration(migrations.Migration):
|
|||
blank=True,
|
||||
help_text='Person listed under "your contact information" in the request form; will receive email updates',
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
related_name="submitted_domain_requests",
|
||||
to="registrar.contact",
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue