Bin
2025-12-17 2e6c955be321cefd7e0c4a3031eab805e0a5a303
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 3.2.16 on 2023-04-13 23:01
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('data_export', '0008_convertedformat_traceback'),
    ]
 
    operations = [
        migrations.AlterField(
            model_name='convertedformat',
            name='traceback',
            field=models.TextField(blank=True, help_text='Traceback report in case of errors', null=True),
        ),
    ]