diff --git a/production/migrations/0021_auto_20171003_1512.py b/production/migrations/0021_auto_20171003_1512.py new file mode 100644 index 0000000000000000000000000000000000000000..259a9b7527ea0d0bdf453ab510d63dd13adee682 --- /dev/null +++ b/production/migrations/0021_auto_20171003_1512.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2017-10-03 13:12 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('production', '0020_auto_20170930_0156'), + ] + + operations = [ + migrations.AlterModelOptions( + name='productionstream', + options={'permissions': (('can_work_for_stream', 'Can work for stream'),)}, + ), + ] diff --git a/production/models.py b/production/models.py index 17f2d73c427e11c0ebfa04d2f3d77a7fca235400..e9e97da0b3e0ad893f9667a9c81283235ba4ec1e 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):