aboutsummaryrefslogtreecommitdiffstats
path: root/client/migrations/0010_documenttype_enabled.py
blob: 24928b08b8c1b90b35ab1ea7944c85c78f921f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 3.0.7 on 2020-06-19 16:41

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('client', '0009_auto_20200619_1546'),
    ]

    operations = [
        migrations.AddField(
            model_name='documenttype',
            name='enabled',
            field=models.BooleanField(default=False),
        ),
    ]