mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-23 00:12:15 +00:00
Python code is now formatted to PEP8 All other files are defined in .editorconfig as far as possible.
30 lines
861 B
Python
30 lines
861 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('RIGS', '0014_auto_20141208_0220'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='event',
|
|
options={'permissions': (('view_event', 'Can view Events'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='organisation',
|
|
options={'permissions': (('view_organisation', 'Can view Organisations'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='person',
|
|
options={'permissions': (('view_person', 'Can view Persons'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='venue',
|
|
options={'permissions': (('view_venue', 'Can view Venues'),)},
|
|
),
|
|
]
|