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-07-20 13:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0011_alter_note_url'),
]
operations = [
migrations.AddField(
model_name='note',
name='status',
field=models.IntegerField(choices=[(0, 'Need to Call In'), (1, 'Called In'), (2, 'Testing'), (3, 'Done'), (4, 'Live')], default=0),
),
]
|