summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0268_alter_documenttemplate_export_format.py
blob: 93d1ff05d7289a487bd8e9cae2f1d8f7259d6bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.2.19 on 2025-04-18 07:40

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0267_alter_documenttemplate_export_format_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='documenttemplate',
            name='export_format',
            field=models.CharField(blank=True, choices=[('', '---')], default='', max_length=4, verbose_name='Export format'),
        ),
    ]