summaryrefslogtreecommitdiff
path: root/app/gtd/migrations/0025_alter_wiredpost_post_status.py
blob: 790bd6f475bca508ee9725b0b0734e86b9389ef8 (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-12-03 15:26

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('gtd', '0024_alter_gtdnote_status'),
    ]

    operations = [
        migrations.AlterField(
            model_name='wiredpost',
            name='post_status',
            field=models.IntegerField(choices=[(0, 'Assigned'), (1, 'turned in'), (2, 'published'), (3, 'NEW')], default=2),
        ),
    ]