fix unwanted horizontal scrollbar
[redakcja.git] / apps / forms_builder / forms / migrations / 0003_auto_20150901_0227.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', '0002_auto_20150819_1046'),
11     ]
12
13     operations = [
14         migrations.AlterField(
15             model_name='field',
16             name='label',
17             field=models.CharField(verbose_name='Label', max_length=2048),
18         ),
19         migrations.AlterField(
20             model_name='form',
21             name='slug',
22             field=models.SlugField(unique=True, verbose_name='Slug', max_length=100),
23         ),
24     ]