aboutsummaryrefslogtreecommitdiffstats
path: root/client/migrations/0025_documenttype_custom_group.py
blob: 56c77f98e963cef3dd09a838463588aeb8b4ffd4 (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-23 14:16

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('client', '0024_auto_20200622_1930'),
    ]

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