diff options
author | luxagraf <sng@luxagraf.net> | 2023-11-17 15:47:10 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-11-17 15:47:10 -0500 |
commit | f30c1b31e3427fd887551b42a9aec74ae292460f (patch) | |
tree | 969bd567c3773413a44609244263ab91680cd8e3 /app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py | |
parent | 6fe5eaf1a31c0d30eefa710f1ddadeaae57abdbe (diff) |
gtd: refactored code to make single notes model for all the things and
added management command to update based on RSS
Diffstat (limited to 'app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py')
-rw-r--r-- | app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py b/app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py new file mode 100644 index 0000000..760bae4 --- /dev/null +++ b/app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.7 on 2023-11-17 09:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0013_gtdnote_url'), + ] + + operations = [ + migrations.AddField( + model_name='gtdnote', + name='plan', + field=models.IntegerField(choices=[(0, 'For Guide'), (1, 'Review'), (2, 'Rave/Rant'), (3, 'No Plan')], default=0), + ), + migrations.AddField( + model_name='gtdnote', + name='work_status', + field=models.IntegerField(choices=[(0, 'Call In'), (1, 'Asked For'), (2, 'Coming'), (3, 'Testing'), (4, 'Done'), (5, 'Live')], default=0), + ), + ] |