2016-02-02 15:34:36 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('core', '0001_initial'),
|
|
|
|
('club', '0001_initial'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='club',
|
2016-02-05 15:59:42 +00:00
|
|
|
name='edit_groups',
|
2016-02-02 15:34:36 +00:00
|
|
|
field=models.ManyToManyField(to='core.Group', blank=True, related_name='editable_club'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='club',
|
2016-02-05 15:59:42 +00:00
|
|
|
name='view_groups',
|
2016-02-02 15:34:36 +00:00
|
|
|
field=models.ManyToManyField(to='core.Group', blank=True, related_name='viewable_club'),
|
|
|
|
),
|
|
|
|
]
|