0126_exporttemplate_file_name.py 368 B

12345678910111213141516
  1. from django.db import migrations, models
  2. class Migration(migrations.Migration):
  3. dependencies = [
  4. ('extras', '0125_alter_tag_options_tag_weight'),
  5. ]
  6. operations = [
  7. migrations.AddField(
  8. model_name='exporttemplate',
  9. name='file_name',
  10. field=models.CharField(blank=True, max_length=200),
  11. ),
  12. ]