2017-09-09 22:03:32 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-10-24 19:19:57 +02:00
|
|
|
from django.db import migrations, models
|
2017-09-09 22:03:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2018-10-06 12:35:49 +02:00
|
|
|
("kfet", "0056_change_account_meta"),
|
|
|
|
("kfet", "0054_update_promos"),
|
2017-09-09 22:03:32 +02:00
|
|
|
]
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
operations = []
|