0003_auto_20170823_1127.py 1.1 KB

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