diff --git a/wagtail/tests/migrations/0005_auto_20141113_0642.py b/wagtail/tests/migrations/0005_auto_20141113_0642.py new file mode 100644 index 0000000000..f34f5bd012 --- /dev/null +++ b/wagtail/tests/migrations/0005_auto_20141113_0642.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('tests', '0004_auto_20141008_0420'), + ] + + operations = [ + migrations.AlterField( + model_name='formfield', + name='choices', + field=models.CharField(help_text='Comma separated list of choices. Only applicable in checkboxes, radio and dropdown.', max_length=512, blank=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='formfield', + name='default_value', + field=models.CharField(help_text='Default value. Comma separated values supported for checkboxes.', max_length=255, blank=True), + preserve_default=True, + ), + ]