forked from botswana-harvard/edc-action-item
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.3.70' into main
- Loading branch information
Showing
2 changed files
with
100 additions
and
22 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
edc_action_item/migrations/0036_alter_actionitem_priority_alter_actionitem_site_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,82 @@ | ||
# Generated by Django 5.0 on 2024-01-24 18:10 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
( | ||
"edc_action_item", | ||
"0035_alter_actionitem_options_alter_actiontype_options_and_more", | ||
), | ||
("sites", "0002_alter_domain_unique"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="actionitem", | ||
name="priority", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("high", "High Priority"), | ||
("medium", "Medium Priority"), | ||
("low", "Low Priority"), | ||
], | ||
help_text="Leave blank to use default for this action type.", | ||
max_length=25, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="actionitem", | ||
name="site", | ||
field=models.ForeignKey( | ||
null=True, | ||
on_delete=django.db.models.deletion.PROTECT, | ||
related_name="+", | ||
to="sites.site", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="actiontype", | ||
name="priority", | ||
field=models.CharField( | ||
choices=[ | ||
("high", "High Priority"), | ||
("medium", "Medium Priority"), | ||
("low", "Low Priority"), | ||
], | ||
default="high", | ||
max_length=25, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalactionitem", | ||
name="priority", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("high", "High Priority"), | ||
("medium", "Medium Priority"), | ||
("low", "Low Priority"), | ||
], | ||
help_text="Leave blank to use default for this action type.", | ||
max_length=25, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalactionitem", | ||
name="site", | ||
field=models.ForeignKey( | ||
blank=True, | ||
db_constraint=False, | ||
null=True, | ||
on_delete=django.db.models.deletion.DO_NOTHING, | ||
related_name="+", | ||
to="sites.site", | ||
), | ||
), | ||
] |
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