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