24 lines
653 B
Python
24 lines
653 B
Python
# Generated by Django 5.0.6 on 2024-06-24 18:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('beer', '0012_recipe_fermentables'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='batch',
|
|
name='first_runnings',
|
|
field=models.DecimalField(blank=True, decimal_places=4, max_digits=8, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipmentprofile',
|
|
name='mash_ratio',
|
|
field=models.DecimalField(decimal_places=2, default=2.6, max_digits=6),
|
|
),
|
|
]
|