f39d1545f0
Creating profiles for BDS, COF and K-Fêt.
21 lines
496 B
Python
21 lines
496 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gestion', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='BdsProfile',
|
|
fields=[
|
|
('profile', models.OneToOneField(serialize=False, to='gestion.Profile', primary_key=True)),
|
|
],
|
|
bases=('gestion.profile',),
|
|
),
|
|
]
|