2
0

0003_auto_20170823_1127.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.3 on 2017-08-23 11:27
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ("base", "0002_auto_20170329_0055"),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name="formfield",
  12. name="field_type",
  13. field=models.CharField(
  14. choices=[
  15. ("singleline", "Single line text"),
  16. ("multiline", "Multi-line text"),
  17. ("email", "Email"),
  18. ("number", "Number"),
  19. ("url", "URL"),
  20. ("checkbox", "Checkbox"),
  21. ("checkboxes", "Checkboxes"),
  22. ("dropdown", "Drop down"),
  23. ("multiselect", "Multiple select"),
  24. ("radio", "Radio buttons"),
  25. ("date", "Date"),
  26. ("datetime", "Date/time"),
  27. ],
  28. max_length=16,
  29. verbose_name="field type",
  30. ),
  31. ),
  32. ]