kpsul/kfet/migrations/0049_rename_cofprofile_profile.py

20 lines
388 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 = [
('kfet', '0048_generic_profiles'),
]
operations = [
migrations.RenameField(
model_name='account',
old_name='cofprofile',
new_name='profile',
),
]