diff options
Diffstat (limited to 'app/gtd/migrations/0025_alter_wiredpost_post_status.py')
-rw-r--r-- | app/gtd/migrations/0025_alter_wiredpost_post_status.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/gtd/migrations/0025_alter_wiredpost_post_status.py b/app/gtd/migrations/0025_alter_wiredpost_post_status.py new file mode 100644 index 0000000..790bd6f --- /dev/null +++ b/app/gtd/migrations/0025_alter_wiredpost_post_status.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-12-03 15:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0024_alter_gtdnote_status'), + ] + + operations = [ + migrations.AlterField( + model_name='wiredpost', + name='post_status', + field=models.IntegerField(choices=[(0, 'Assigned'), (1, 'turned in'), (2, 'published'), (3, 'NEW')], default=2), + ), + ] |