diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2016-08-17 22:03:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 22:03:32 (GMT) |
commit | 0c2a864cc58acf436d49a09877ca55dd2c3b4fc4 (patch) | |
tree | a92f0f3ccdc212f34bc67db43e7fb5f2da8f5075 /program/migrations/0009_host_remove_is_active.py | |
parent | 6990ff7f88f827d7193cb5ddef0be22546bccd23 (diff) | |
parent | 8531fd1756b37cf4c5d7c14d22dc9fb5057e0e74 (diff) |
Merge pull request #3 from radio-helsinki-graz/recognize_activity
Recognize activity
Diffstat (limited to 'program/migrations/0009_host_remove_is_active.py')
-rw-r--r-- | program/migrations/0009_host_remove_is_active.py | 18 |
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', + ), + ] |