# Generated by Django 4.2.7 on 2023-12-03 15:08 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('gtd', '0023_alter_gtdproject_project_type'), ] operations = [ migrations.AlterField( model_name='gtdnote', name='status', field=models.SmallIntegerField(choices=[(0, 'None'), (1, 'Open'), (2, 'Completed')], default=0), ), ]