2016-08-09 11:02:26 +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-09 11:02:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0025_auto_20160809_0750")]
|
2016-08-09 11:02:26 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="settings",
|
|
|
|
name="name",
|
2016-08-09 11:02:26 +02:00
|
|
|
field=models.CharField(db_index=True, max_length=45, unique=True),
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2016-08-09 11:02:26 +02:00
|
|
|
]
|