summaryrefslogtreecommitdiff
path: root/app/gtd/migrations/0014_gtdnote_plan_gtdnote_work_status.py
blob: 760bae40420e2504d4f73af1c915b577834519b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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),
        ),
    ]