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 = [
|
2017-10-26 11:06:17 +02:00
|
|
|
('cof', '0014_move_profile'),
|
|
|
|
('kfet', '0061_add_perms_config'),
|
2017-02-10 20:10:45 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='account',
|
|
|
|
name='cofprofile',
|
2017-02-22 19:28:34 +01:00
|
|
|
field=models.OneToOneField(
|
|
|
|
to='gestion.Profile',
|
2017-10-26 14:05:35 +02:00
|
|
|
on_delete=models.PROTECT,
|
2017-02-22 19:28:34 +01:00
|
|
|
related_name='account_kfet'),
|
2017-02-10 20:10:45 +01:00
|
|
|
),
|
2017-10-12 00:04:06 +02:00
|
|
|
migrations.RenameField(
|
|
|
|
model_name='account',
|
|
|
|
old_name='cofprofile',
|
|
|
|
new_name='profile',
|
|
|
|
),
|
2017-02-10 20:10:45 +01:00
|
|
|
]
|