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