From 819cc1f055e95492f4011bf05e555bfa87dfea96 Mon Sep 17 00:00:00 2001 From: Oleg Lavrovsky Date: Mon, 7 Jun 2021 17:44:16 +0200 Subject: [PATCH] Wagtail 2.13 migration --- .../0029_contactformfield_clean_name.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 publichealth/home/migrations/0029_contactformfield_clean_name.py diff --git a/publichealth/home/migrations/0029_contactformfield_clean_name.py b/publichealth/home/migrations/0029_contactformfield_clean_name.py new file mode 100644 index 0000000..a69389b --- /dev/null +++ b/publichealth/home/migrations/0029_contactformfield_clean_name.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.24 on 2021-06-07 15:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0028_contact_style'), + ] + + operations = [ + migrations.AddField( + model_name='contactformfield', + name='clean_name', + field=models.CharField(blank=True, default='', help_text='Safe name of the form field, the label converted to ascii_snake_case', max_length=255, verbose_name='name'), + ), + ]