Fix and merge kfet migrations
This commit is contained in:
parent
5d572b3603
commit
c65ddba1d6
2 changed files with 6 additions and 20 deletions
|
@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cof', '0009_generic_profiles'),
|
||||
('cof', '0009_move_profile'),
|
||||
('kfet', '0047_auto_20170104_1528'),
|
||||
]
|
||||
|
||||
|
@ -20,4 +20,9 @@ class Migration(migrations.Migration):
|
|||
on_delete=models.CASCADE,
|
||||
related_name='account_kfet'),
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='account',
|
||||
old_name='cofprofile',
|
||||
new_name='profile',
|
||||
),
|
||||
]
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
# -*- 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',
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue