SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 537a7adf authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Add state mgirations

parent 3bbc2800
No related branches found
No related tags found
No related merge requests found
# -*- 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'))},
),
]
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment