summaryrefslogtreecommitdiff
path: root/app/gtd/migrations
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-12-03 16:10:26 -0500
committerluxagraf <sng@luxagraf.net>2023-12-03 16:10:26 -0500
commite899544a20bc53cf0abbcc301e841e620ab02988 (patch)
treec7b8f2be87761ad9f6dd1aab539169adb8957f84 /app/gtd/migrations
parent25603d698762cae51f1952e4ff48680dc89e45a5 (diff)
gtd: forgot migration
Diffstat (limited to 'app/gtd/migrations')
-rw-r--r--app/gtd/migrations/0026_alter_wiredpost_post_status.py18
1 files changed, 18 insertions, 0 deletions
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),
+ ),
+ ]