mybuddy/core/migrations/0006_auto_20190502_1701.py

27 lines
699 B
Python
Raw Permalink Normal View History

# Generated by Django 2.2 on 2019-05-02 17:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2022-02-10 00:00:30 +00:00
("core", "0005_auto_20190416_2048"),
]
operations = [
migrations.AlterField(
2022-02-10 00:00:30 +00:00
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",
),
),
]