summaryrefslogtreecommitdiff
path: root/app/notes/migrations/0003_alter_note_plan_alter_note_status.py
blob: 04b467bda0a410d5cbfbb6da82b01048c526cec7 (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.2 on 2023-10-16 14:36

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notes', '0002_alter_note_options_note_plan_alter_note_post'),
    ]

    operations = [
        migrations.AlterField(
            model_name='note',
            name='plan',
            field=models.IntegerField(choices=[(0, 'For Guide'), (1, 'Review'), (2, 'Rave/Rant'), (3, 'No Plan')], default=0),
        ),
        migrations.AlterField(
            model_name='note',
            name='status',
            field=models.IntegerField(choices=[(0, 'Call In'), (1, 'Asked For'), (2, 'Coming'), (3, 'Testing'), (4, 'Done'), (5, 'Live')], default=0),
        ),
    ]