blob: ff506098363542b3c5ce37a45bd0035fbf39c52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.2 on 2023-08-02 20:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0015_delete_note'),
]
operations = [
migrations.AddField(
model_name='post',
name='post_status',
field=models.IntegerField(choices=[(0, 'Assigned'), (1, 'turned in'), (2, 'published')], default=2),
),
]
|