From e899544a20bc53cf0abbcc301e841e620ab02988 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 3 Dec 2023 16:10:26 -0500 Subject: gtd: forgot migration --- app/gtd/migrations/0026_alter_wiredpost_post_status.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/gtd/migrations/0026_alter_wiredpost_post_status.py (limited to 'app/gtd/migrations') diff --git a/app/gtd/migrations/0026_alter_wiredpost_post_status.py b/app/gtd/migrations/0026_alter_wiredpost_post_status.py new file mode 100644 index 0000000..c8362f7 --- /dev/null +++ b/app/gtd/migrations/0026_alter_wiredpost_post_status.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-12-03 16:09 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0025_alter_wiredpost_post_status'), + ] + + operations = [ + migrations.AlterField( + model_name='wiredpost', + name='post_status', + field=models.IntegerField(choices=[(0, 'Assigned'), (1, 'turned in'), (2, 'published')], default=2), + ), + ] -- cgit v1.2.3-70-g09d2