19 lines
445 B
Python
19 lines
445 B
Python
# Generated by Django 5.0.6 on 2024-05-30 13:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('yeast', '0025_alter_yeast_pitched_batch_alter_batch_source_batch_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='batch',
|
|
name='notes',
|
|
field=models.TextField(blank=True, max_length=500, null=True),
|
|
),
|
|
]
|