fix unwanted horizontal scrollbar
[redakcja.git] / apps / forms_builder / forms / migrations / 0002_auto_20150819_1046.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('forms', '0001_initial'),
11     ]
12
13     operations = [
14         migrations.AlterField(
15             model_name='form',
16             name='email_from',
17             field=models.EmailField(max_length=254, verbose_name='From address', blank=True, help_text='The address the email will be sent from'),
18         ),
19     ]