kpsul/kfet/migrations/0048_generic_profiles.py

29 lines
701 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2017-10-12 00:04:06 +02:00
('cof', '0009_move_profile'),
('kfet', '0047_auto_20170104_1528'),
]
operations = [
migrations.AlterField(
model_name='account',
name='cofprofile',
field=models.OneToOneField(
to='gestion.Profile',
on_delete=models.CASCADE,
related_name='account_kfet'),
),
2017-10-12 00:04:06 +02:00
migrations.RenameField(
model_name='account',
old_name='cofprofile',
new_name='profile',
),
]