Files
proc-rota/djangorota/rota/migrations/0003_rotarun_export_html.py
2025-12-09 12:16:59 +00:00

22 lines
435 B
Python

"""Add export_html field to RotaRun.
Generated by assistant.
"""
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("rota", "0002_rotaschedule_options_rotaschedule_shifts"),
]
operations = [
migrations.AddField(
model_name="rotarun",
name="export_html",
field=models.TextField(blank=True, null=True),
),
]