Forgot to commit this.
This commit is contained in:
parent
b05f486f19
commit
1a4d352d85
24
beer/migrations/0005_recipehop_time_recipehop_use.py
Normal file
24
beer/migrations/0005_recipehop_time_recipehop_use.py
Normal 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),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user