mirror of https://github.com/snachodog/mybuddy.git
27 lines
657 B
Python
27 lines
657 B
Python
# Generated by Django 2.2.1 on 2019-06-07 14:22
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("core", "0007_temperature"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="feeding",
|
|
name="type",
|
|
field=models.CharField(
|
|
choices=[
|
|
("breast milk", "Breast milk"),
|
|
("formula", "Formula"),
|
|
("fortified breast milk", "Fortified breast milk"),
|
|
],
|
|
max_length=255,
|
|
verbose_name="Type",
|
|
),
|
|
),
|
|
]
|