0005_formfield_clean_name.py 609 B

123456789101112131415161718192021222324
  1. # Generated by Django 3.1 on 2020-08-15 21:28
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ("base", "0004_auto_20180522_1856"),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name="formfield",
  10. name="clean_name",
  11. field=models.CharField(
  12. blank=True,
  13. default="",
  14. help_text="Safe name of the form field, the label converted to ascii_snake_case",
  15. max_length=255,
  16. verbose_name="name",
  17. ),
  18. ),
  19. ]