diff options
Diffstat (limited to 'ishtar_common/migrations/0268_alter_documenttemplate_export_format.py')
-rw-r--r-- | ishtar_common/migrations/0268_alter_documenttemplate_export_format.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0268_alter_documenttemplate_export_format.py b/ishtar_common/migrations/0268_alter_documenttemplate_export_format.py new file mode 100644 index 000000000..93d1ff05d --- /dev/null +++ b/ishtar_common/migrations/0268_alter_documenttemplate_export_format.py @@ -0,0 +1,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'), + ), + ] |