22 lines
496 B
Python
22 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',),
|
||
|
),
|
||
|
]
|