mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-05 22:03:21 +00:00
21 lines
475 B
Python
21 lines
475 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0001_initial'),
|
||
|
('club', '0002_auto_20160202_1345'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='club',
|
||
|
name='owner_group',
|
||
|
field=models.ForeignKey(default=1, to='core.Group', related_name='owned_club'),
|
||
|
),
|
||
|
]
|