# Generated by Django 3.2.6 on 2021-08-25 15:19 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('charts', '0003_alter_ambulation_devices_used'), ] operations = [ migrations.AlterField( model_name='bowelmovement', name='consistency', field=models.CharField(blank=True, choices=[('SO', 'Soft'), ('HD', 'Hard'), ('LQ', 'Liquid'), ('FM', 'Formed'), ('SF', 'Soft and formed')], max_length=2), ), ]