brewery-website/yeast/migrations/0003_rename_batch_propogation.py
Chris Giacofei 3468c38008 Rename yeast batch to propogation.
Refrences to yeast `batches` are now `propogations`.

Hopefully less confusing now...
Closes #6
2024-06-07 11:27:41 -04:00

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',
),
]