From 8c50b529e7f14096d5efb92553dedbdf27bd74d7 Mon Sep 17 00:00:00 2001
From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>
Date: Wed, 6 Jan 2016 20:00:07 +0100
Subject: added is_active model field


diff --git a/program/migrations/0003_host_is_active.py b/program/migrations/0003_host_is_active.py
new file mode 100644
index 0000000..28c1049
--- /dev/null
+++ b/program/migrations/0003_host_is_active.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('program', '0002_host_is_always_visible'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='host',
+            name='is_active',
+            field=models.BooleanField(default=True, verbose_name='Is active', editable=False),
+        ),
+    ]
-- 
cgit v0.10.2