diff options
author | luxagraf <sng@luxagraf.net> | 2023-11-16 10:35:58 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-11-16 10:35:58 -0500 |
commit | 28dcc949f8617c1e4b1ef0b02de91b5738661f10 (patch) | |
tree | 2e96dfcec3923d1d13dec908b0379850f789e6d8 /app/gtd/migrations | |
parent | 2722e2093d31481c4ad85cf7a1b1b22be11efccd (diff) |
gtd: revamped naming and added outcome CRUD views
Diffstat (limited to 'app/gtd/migrations')
-rw-r--r-- | app/gtd/migrations/0009_alter_gtdoutcome_date_ended_and_more.py | 28 | ||||
-rw-r--r-- | app/gtd/migrations/0010_alter_gtdproject_project_type.py | 18 |
2 files changed, 46 insertions, 0 deletions
diff --git a/app/gtd/migrations/0009_alter_gtdoutcome_date_ended_and_more.py b/app/gtd/migrations/0009_alter_gtdoutcome_date_ended_and_more.py new file mode 100644 index 0000000..7ebee2d --- /dev/null +++ b/app/gtd/migrations/0009_alter_gtdoutcome_date_ended_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.7 on 2023-11-16 14:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0008_alter_wiredpost_date_last_pub'), + ] + + operations = [ + migrations.AlterField( + model_name='gtdoutcome', + name='date_ended', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='gtdoutcome', + name='date_goal', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='wiredpost', + name='date_last_pub', + field=models.DateField(), + ), + ] diff --git a/app/gtd/migrations/0010_alter_gtdproject_project_type.py b/app/gtd/migrations/0010_alter_gtdproject_project_type.py new file mode 100644 index 0000000..a7de764 --- /dev/null +++ b/app/gtd/migrations/0010_alter_gtdproject_project_type.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-11-16 14:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gtd', '0009_alter_gtdoutcome_date_ended_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='gtdproject', + name='project_type', + field=models.IntegerField(choices=[(0, 'Wired'), (1, 'LBH'), (2, 'Personal')], default=2), + ), + ] |