summaryrefslogtreecommitdiff
path: root/program/migrations/0008_show_remove_automation_id.py
diff options
context:
space:
mode:
Diffstat (limited to 'program/migrations/0008_show_remove_automation_id.py')
-rw-r--r--program/migrations/0008_show_remove_automation_id.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/program/migrations/0008_show_remove_automation_id.py b/program/migrations/0008_show_remove_automation_id.py
new file mode 100644
index 0000000..eda14c5
--- /dev/null
+++ b/program/migrations/0008_show_remove_automation_id.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('program', '0007_show_remove_cba_series_id'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='show',
+ name='automation_id',
+ ),
+ ]