[migrations] Add default value to run time seconds

This commit is contained in:
2025-01-21 23:19:45 -05:00
parent a9499f0463
commit 84790c805c
17 changed files with 295 additions and 1 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 4.2.16 on 2025-01-22 03:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
(
"beers",
"0004_beerproducer_name_beerproducer_uuid_beerstyle_name_and_more",
),
]
operations = [
migrations.AlterField(
model_name="beer",
name="run_time_seconds",
field=models.IntegerField(default=900),
),
]