From ef427d9df0f9bd72e1d6f1938daa5e42701064b9 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Mon, 24 Jan 2022 17:38:22 -0400 Subject: [PATCH] Migrate Schedule model to remove automation_id --- .../0010_remove_schedule_automation_id.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 program/migrations/0010_remove_schedule_automation_id.py diff --git a/program/migrations/0010_remove_schedule_automation_id.py b/program/migrations/0010_remove_schedule_automation_id.py new file mode 100644 index 00000000..e90f4eee --- /dev/null +++ b/program/migrations/0010_remove_schedule_automation_id.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.11 on 2022-01-24 21:37 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('program', '0009_auto_20220124_2211'), + ] + + operations = [ + migrations.RemoveField( + model_name='schedule', + name='automation_id', + ), + ] -- GitLab