mirror of https://github.com/snachodog/mybuddy.git
Add migrations
This commit is contained in:
parent
f4b9053c00
commit
dadb84ec6a
|
@ -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'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue