brewery-website/beer/migrations/0013_batch_first_runnings_equipmentprofile_mash_ratio.py
Chris Giacofei 1d830eb22d More batch info.
Please enter the commit message for your changes. Lines starting
2024-06-24 16:25:18 -04:00

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