16 lines
322 B
Python
16 lines
322 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kfet', '0057_add_perms_config'),
|
|
('kfet', '0056_change_account_meta'),
|
|
('kfet', '0054_update_promos'),
|
|
]
|
|
|
|
operations = [
|
|
]
|