# 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), ), ]