815a5f274c
- appropriate naming for migration - remove __future__ imports. - remove "CofProfile" left in kfet/models.py
19 lines
388 B
Python
19 lines
388 B
Python
# -*- 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',
|
|
),
|
|
]
|