diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-20 10:01:40 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-20 10:01:40 -0500 |
commit | 0d9832ddea1bab497674ffcb81503dbc98b014d9 (patch) | |
tree | 50c0bbf0b8c270d344cc25e2bb8525af516286fa /app/posts/migrations | |
parent | 30a7a279f51596aa5c03b1b62d7226b9ae734f94 (diff) |
posts: added a status to notes
Diffstat (limited to 'app/posts/migrations')
-rw-r--r-- | app/posts/migrations/0012_note_status.py | 18 |
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), + ), + ] |