9409b55df5
- Add missing migrations - Fix dependencies - rename gestioncof -> cof
28 lines
699 B
Python
28 lines
699 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cof', '0014_move_profile'),
|
|
('kfet', '0061_add_perms_config'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='account',
|
|
name='cofprofile',
|
|
field=models.OneToOneField(
|
|
to='gestion.Profile',
|
|
on_delete=models.CASCADE,
|
|
related_name='account_kfet'),
|
|
),
|
|
migrations.RenameField(
|
|
model_name='account',
|
|
old_name='cofprofile',
|
|
new_name='profile',
|
|
),
|
|
]
|