kpsul/kfet/migrations/0063_generic_profiles.py

29 lines
707 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 = [
('cof', '0014_move_profile'),
2017-10-27 03:40:41 +02:00
('kfet', '0062_delete_globalpermissions'),
]
operations = [
migrations.AlterField(
model_name='account',
name='cofprofile',
field=models.OneToOneField(
to='gestion.Profile',
2017-10-26 14:05:35 +02:00
on_delete=models.PROTECT,
related_name='account_kfet'),
),
2017-10-12 00:04:06 +02:00
migrations.RenameField(
model_name='account',
old_name='cofprofile',
new_name='profile',
),
]