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