mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
22 lines
478 B
Python
22 lines
478 B
Python
# Generated by Django 2.2.7 on 2019-11-18 12:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cookbook', '0012_auto_20191118_1251'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='recipeingredients',
|
|
name='ingredient',
|
|
field=models.CharField(max_length=128),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Ingredients',
|
|
),
|
|
]
|