aboutsummaryrefslogtreecommitdiffstats
path: root/client/migrations/0014_auto_20200620_1506.py
blob: d0abc9c4b86789d395e8feccf6dfff4c6b7cb9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 3.0.7 on 2020-06-20 13:06

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('client', '0013_auto_20200620_1113'),
    ]

    operations = [
        migrations.AddField(
            model_name='documenttype',
            name='custom_message',
            field=models.BooleanField(default=False),
        ),
        migrations.AddField(
            model_name='documenttype',
            name='custom_message_text',
            field=models.CharField(default='', max_length=250),
        ),
    ]