Forgot to commit this.

This commit is contained in:
Chris Giacofei 2024-06-17 16:24:24 -04:00
parent b05f486f19
commit 1a4d352d85

View File

@ -0,0 +1,24 @@
# 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),
),
]