summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/gtd/migrations/0021_alter_gtdnote_note_type.py18
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),
+ ),
+ ]