0003_exporttemplate_add_description.py 627 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10 on 2016-09-27 20:20
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('extras', '0002_custom_fields'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='exporttemplate',
  12. name='description',
  13. field=models.CharField(blank=True, max_length=200),
  14. ),
  15. migrations.AlterField(
  16. model_name='exporttemplate',
  17. name='name',
  18. field=models.CharField(max_length=100),
  19. ),
  20. ]