25 lines
747 B
Python
25 lines
747 B
Python
# Generated by Django 5.0.6 on 2024-06-17 18:24
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('beer', '0004_fermentable_hop_mash_misc_supplier_unit_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recipehop',
|
|
name='time',
|
|
field=models.IntegerField(default=60, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
migrations.AddField(
|
|
model_name='recipehop',
|
|
name='use',
|
|
field=models.IntegerField(choices=[(1, 'Boil'), (2, 'Dry Hop'), (3, 'Aroma (Hop Stand)'), (4, 'Mash'), (5, 'First Wort')], default=1),
|
|
),
|
|
]
|