17 lines
411 B
Python
17 lines
411 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("kfet", "0025_auto_20160809_0750")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="settings",
|
|
name="name",
|
|
field=models.CharField(db_index=True, max_length=45, unique=True),
|
|
)
|
|
]
|