You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
875 B
33 lines
875 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("dynamic_preferences", "0002_auto_20150712_0332"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="globalpreferencemodel",
|
|
name="name",
|
|
field=models.CharField(max_length=150, db_index=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AlterField(
|
|
model_name="globalpreferencemodel",
|
|
name="section",
|
|
field=models.CharField(
|
|
max_length=150,
|
|
null=True,
|
|
default=None,
|
|
db_index=True,
|
|
blank=True,
|
|
verbose_name="Section Name",
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|