diff options
author | luxagraf <sng@luxagraf.net> | 2023-11-17 17:20:16 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-11-17 17:20:16 -0500 |
commit | b4feff3b31daa3c29be564719796ffb29a22dbb7 (patch) | |
tree | a4b3f5991c34c115f59b8e0fa8a7dbf5f142d999 /app/gtd | |
parent | c6b6bdf136497a863d6170467340e3f096ed64cc (diff) |
gtd: added migration
Diffstat (limited to 'app/gtd')
-rw-r--r-- | app/gtd/migrations/0021_alter_gtdnote_note_type.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/gtd/migrations/0021_alter_gtdnote_note_type.py b/app/gtd/migrations/0021_alter_gtdnote_note_type.py new file mode 100644 index 0000000..0dfe0b3 --- /dev/null +++ b/app/gtd/migrations/0021_alter_gtdnote_note_type.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-11-17 17:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0020_remove_gtdnote_work_plan_remove_gtdnote_work_status_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='gtdnote', + name='note_type', + field=models.SmallIntegerField(choices=[(0, 'Action'), (1, 'Reminder'), (2, 'Reference'), (3, 'Someday')], default=0), + ), + ] |