File: 0005_auto_20181120_0848.py

package info (click to toggle)
django-dynamic-preferences 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: python: 3,040; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 908 bytes parent folder | download
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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("dynamic_preferences", "0004_move_user_model"),
    ]

    operations = [
        migrations.AlterModelOptions(
            name="globalpreferencemodel",
            options={
                "verbose_name": "Global preference",
                "verbose_name_plural": "Global preferences",
            },
        ),
        migrations.AlterField(
            model_name="globalpreferencemodel",
            name="name",
            field=models.CharField(db_index=True, max_length=150, verbose_name="Name"),
        ),
        migrations.AlterField(
            model_name="globalpreferencemodel",
            name="raw_value",
            field=models.TextField(blank=True, null=True, verbose_name="Raw Value"),
        ),
    ]