Add migrations

This commit is contained in:
Christopher C. Wells 2021-04-15 05:30:09 -07:00 committed by Christopher Charbonneau Wells
parent f4b9053c00
commit dadb84ec6a
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 3.2 on 2021-04-15 12:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0012_auto_20200813_0238'),
]
operations = [
migrations.AlterField(
model_name='feeding',
name='method',
field=models.CharField(choices=[('bottle', 'Bottle'), ('left breast', 'Left breast'), ('right breast', 'Right breast'), ('both breasts', 'Both breasts'), ('parent fed', 'Parent fed'), ('self fed', 'Self fed')], max_length=255, verbose_name='Method'),
),
migrations.AlterField(
model_name='feeding',
name='type',
field=models.CharField(choices=[('breast milk', 'Breast milk'), ('formula', 'Formula'), ('fortified breast milk', 'Fortified breast milk'), ('solid food', 'Solid food')], max_length=255, verbose_name='Type'),
),
]