diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-08-03 18:02:10 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-08-03 18:02:10 (GMT) |
commit | e1dd7af199984d7ef3c875c88e39aee06d538370 (patch) | |
tree | 55a537e25b25089f91bf19e0ee042dda7089b71b /program/migrations | |
parent | 31406aa5c3c53341cdadbc760b95d234ccdc20c6 (diff) | |
parent | bb828a37309ab297fc8d50ef261bbfc14c871a6e (diff) |
Merge branch 'master' into stable
Diffstat (limited to 'program/migrations')
-rw-r--r-- | program/migrations/0008_show_remove_automation_id.py | 18 |
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', + ), + ] |