From 0d9832ddea1bab497674ffcb81503dbc98b014d9 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Thu, 20 Jul 2023 10:01:40 -0500 Subject: posts: added a status to notes --- app/posts/migrations/0012_note_status.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/posts/migrations/0012_note_status.py (limited to 'app/posts/migrations') 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), + ), + ] -- cgit v1.2.3-70-g09d2