0004_auto_20150517_0510.py 435 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('forms', '0003_emailfield'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='form',
  11. name='button_text',
  12. field=models.CharField(max_length=50, verbose_name='Button text', blank=True),
  13. ),
  14. ]