19 lines
460 B
Python
19 lines
460 B
Python
# Generated by Django 5.0.6 on 2024-06-21 13:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('beer', '0011_rename_batchrecipe_recipe'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recipe',
|
|
name='fermentables',
|
|
field=models.ManyToManyField(through='beer.RecipeFermentable', to='beer.fermentable'),
|
|
),
|
|
]
|