aboutsummaryrefslogtreecommitdiffstats
path: root/client/migrations/0005_documenttype_staff_only.py
blob: 3211c2677ecf353c85eddbb128316e487f1de9bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 3.1.2 on 2020-10-30 16:46

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('client', '0004_auto_20200903_1828'),
    ]

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