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.
27 lines
717 B
27 lines
717 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("dynamic_preferences", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="globalpreferencemodel",
|
|
name="name",
|
|
field=models.CharField(max_length=150, db_index=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="globalpreferencemodel",
|
|
name="section",
|
|
field=models.CharField(
|
|
max_length=150, blank=True, db_index=True, default=None, null=True
|
|
),
|
|
),
|
|
]
|