This commit is contained in:
Ross
2025-12-09 12:16:59 +00:00
parent c63d4d1585
commit e6943ccfc7
5 changed files with 76 additions and 4 deletions
@@ -0,0 +1,21 @@
"""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),
),
]