-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #335 from UW-GAC/bugfix/add-cdsa-migration
Add forgotten CDSA migration
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
primed/cdsa/migrations/0010_alter_historicalsignedagreement_status_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Generated by Django 4.2.7 on 2023-12-04 23:27 | ||
|
||
from django.db import migrations | ||
import model_utils.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0009_signedagreement_add_field_status"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalsignedagreement", | ||
name="status", | ||
field=model_utils.fields.StatusField( | ||
choices=[ | ||
("active", "Active"), | ||
("withdrawn", "Withdrawn"), | ||
("lapsed", "Lapsed"), | ||
], | ||
default="active", | ||
max_length=100, | ||
no_check_for_status=True, | ||
verbose_name="status", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="signedagreement", | ||
name="status", | ||
field=model_utils.fields.StatusField( | ||
choices=[ | ||
("active", "Active"), | ||
("withdrawn", "Withdrawn"), | ||
("lapsed", "Lapsed"), | ||
], | ||
default="active", | ||
max_length=100, | ||
no_check_for_status=True, | ||
verbose_name="status", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters