summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0024_custom_form_enabled.py
blob: 92fd32f6ee5ddc636fc8e10f0a1c2759cd9694bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-11-21 09:55
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0023_excludedfield'),
    ]

    operations = [
        migrations.AlterModelOptions(
            name='excludedfield',
            options={'verbose_name': 'Excluded field', 'verbose_name_plural': 'Excluded fields'},
        ),
        migrations.AddField(
            model_name='customform',
            name='enabled',
            field=models.BooleanField(default=True, help_text='Disable with caution: disabling a form with mandatory fields may lead to database errors.', verbose_name='Enable this form'),
        ),
    ]