Refrences to yeast `batches` are now `propogations`. Hopefully less confusing now... Closes #6
19 lines
398 B
Python
19 lines
398 B
Python
# Generated by Django 5.0.6 on 2024-06-07 15:21
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('beer', '0001_initial'),
|
|
('yeast', '0002_alter_batch_options_rename_batch_yeast_propogation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameModel(
|
|
old_name='Batch',
|
|
new_name='Propogation',
|
|
),
|
|
]
|