21 lines
486 B
Python
21 lines
486 B
Python
|
# -*- 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',
|
||
|
field=models.OneToOneField(to='gestion.Profile', related_name='account_kfet'),
|
||
|
),
|
||
|
]
|