mirror of https://github.com/snachodog/mybuddy.git
28 lines
700 B
Python
28 lines
700 B
Python
# Generated by Django 2.2 on 2019-05-02 17:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("core", "0005_auto_20190416_2048"),
|
|
]
|
|
|
|
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"),
|
|
],
|
|
max_length=255,
|
|
verbose_name="Method",
|
|
),
|
|
),
|
|
]
|