1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from django.db import models, migrations
- class Migration(migrations.Migration):
- dependencies = [
- ('forms', '0003_emailfield'),
- ]
- operations = [
- migrations.AlterField(
- model_name='form',
- name='button_text',
- field=models.CharField(max_length=50, verbose_name='Button text', blank=True),
- ),
- ]
|