blob: c8362f7fabe8bdc5fa0f3d7166b9bff7df959f45 (
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 16:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0025_alter_wiredpost_post_status'),
]
operations = [
migrations.AlterField(
model_name='wiredpost',
name='post_status',
field=models.IntegerField(choices=[(0, 'Assigned'), (1, 'turned in'), (2, 'published')], default=2),
),
]
|