kpsul/kfet/migrations/0063_generic_profiles.py
2017-10-27 03:40:41 +02:00

29 lines
707 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', '0062_delete_globalpermissions'),
]
operations = [
migrations.AlterField(
model_name='account',
name='cofprofile',
field=models.OneToOneField(
to='gestion.Profile',
on_delete=models.PROTECT,
related_name='account_kfet'),
),
migrations.RenameField(
model_name='account',
old_name='cofprofile',
new_name='profile',
),
]