2017-09-13 01:57:31 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0057_merge")]
|
2017-09-13 01:57:31 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
operations = [migrations.DeleteModel(name="GenericTeamToken")]
|