brewery-website/beer/migrations/0012_recipe_fermentables.py
2024-06-21 11:32:53 -04:00

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'),
),
]