From b4feff3b31daa3c29be564719796ffb29a22dbb7 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Fri, 17 Nov 2023 17:20:16 -0500 Subject: gtd: added migration --- app/gtd/migrations/0021_alter_gtdnote_note_type.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/gtd/migrations/0021_alter_gtdnote_note_type.py (limited to 'app/gtd') 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), + ), + ] -- cgit v1.2.3-70-g09d2