19 lines
465 B
Python
19 lines
465 B
Python
# Generated by Django 4.0.3 on 2023-03-03 15:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('receipe', '0036_remove_article_ingredients'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='ingredients',
|
|
field=models.ManyToManyField(blank=True, through='receipe.IngredientsArticle', to='receipe.ingredients'),
|
|
),
|
|
]
|