1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# -*- 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,
),
]
|