summaryrefslogtreecommitdiff
path: root/app/posts/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/migrations')
-rw-r--r--app/posts/migrations/0012_note_status.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0012_note_status.py b/app/posts/migrations/0012_note_status.py
new file mode 100644
index 0000000..a773488
--- /dev/null
+++ b/app/posts/migrations/0012_note_status.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.2.2 on 2023-07-20 13:49
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0011_alter_note_url'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='note',
+ name='status',
+ field=models.IntegerField(choices=[(0, 'Need to Call In'), (1, 'Called In'), (2, 'Testing'), (3, 'Done'), (4, 'Live')], default=0),
+ ),
+ ]