2016-08-20 19:35:45 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-20 19:35:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0028_auto_20160820_0146")]
|
2016-08-20 19:35:45 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2018-10-06 12:35:49 +02:00
|
|
|
name="GenericTeamToken",
|
2016-08-20 19:35:45 +02:00
|
|
|
fields=[
|
2018-10-06 12:35:49 +02:00
|
|
|
(
|
|
|
|
"id",
|
|
|
|
models.AutoField(
|
|
|
|
serialize=False,
|
|
|
|
primary_key=True,
|
|
|
|
auto_created=True,
|
|
|
|
verbose_name="ID",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
("token", models.CharField(unique=True, max_length=50)),
|
2016-08-20 19:35:45 +02:00
|
|
|
],
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2016-08-20 19:35:45 +02:00
|
|
|
]
|