cna_charting/charts/migrations/0004_alter_bowelmovement_consistency.py
2022-05-03 19:07:12 -06:00

19 lines
524 B
Python

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