2017-02-10 20:10:45 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('cof', '0009_generic_profiles'),
|
|
|
|
('kfet', '0047_auto_20170104_1528'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='account',
|
|
|
|
name='cofprofile',
|
2017-02-22 19:28:34 +01:00
|
|
|
field=models.OneToOneField(
|
|
|
|
to='gestion.Profile',
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
related_name='account_kfet'),
|
2017-02-10 20:10:45 +01:00
|
|
|
),
|
|
|
|
]
|