summaryrefslogtreecommitdiff
path: root/app/gtd/migrations/0016_alter_gtdnote_work_plan.py
blob: ee7a4007ef77226a9f9a7dfc21a6dca84d539c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.2.7 on 2023-11-17 09:24

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('gtd', '0015_rename_plan_gtdnote_work_plan'),
    ]

    operations = [
        migrations.AlterField(
            model_name='gtdnote',
            name='work_plan',
            field=models.IntegerField(choices=[(1, 'For Guide'), (2, 'Review'), (3, 'Rave/Rant'), (0, 'No Plan')], default=1),
        ),
    ]