2017-02-14 21:23:45 +03:00
|
|
|
# Generated by Django 1.9 on 2016-11-04 01:06
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2022-10-19 17:10:30 +03:00
|
|
|
("recipes", "0001_initial"),
|
2017-02-14 21:23:45 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RenameField(
|
2022-10-19 17:10:30 +03:00
|
|
|
model_name="recipeingredient",
|
|
|
|
old_name="recipes",
|
|
|
|
new_name="recipe",
|
2017-02-14 21:23:45 +03:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2022-10-19 17:10:30 +03:00
|
|
|
model_name="recipeingredient",
|
|
|
|
name="unit",
|
|
|
|
field=models.CharField(
|
|
|
|
choices=[
|
|
|
|
(b"unit", b"Units"),
|
|
|
|
(b"kg", b"Kilograms"),
|
|
|
|
(b"l", b"Litres"),
|
|
|
|
(b"st", b"Shots"),
|
|
|
|
],
|
|
|
|
max_length=20,
|
|
|
|
),
|
2017-02-14 21:23:45 +03:00
|
|
|
),
|
|
|
|
]
|