diff --git a/production/migrations/0022_auto_20171003_1525.py b/production/migrations/0022_auto_20171003_1525.py new file mode 100644 index 0000000000000000000000000000000000000000..50746ff3a864bd9e77886f4b2f700545eec0a4cc --- /dev/null +++ b/production/migrations/0022_auto_20171003_1525.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2017-10-03 13:25 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('production', '0021_auto_20171003_1512'), + ] + + operations = [ + migrations.AlterModelOptions( + name='productionstream', + options={'permissions': (('can_work_for_stream', 'Can work for stream'), ('can_perform_supervisory_actions', 'Can perform supervisory actions'))}, + ), + ] diff --git a/production/models.py b/production/models.py index e9e97da0b3e0ad893f9667a9c81283235ba4ec1e..17f2d73c427e11c0ebfa04d2f3d77a7fca235400 100644 --- a/production/models.py +++ b/production/models.py @@ -37,7 +37,7 @@ class ProductionStream(models.Model): class Meta: permissions = ( ('can_work_for_stream', 'Can work for stream'), - # ('can_perform_supervisory_actions', 'Can perform supervisory actions'), + ('can_perform_supervisory_actions', 'Can perform supervisory actions'), ) def __str__(self):