Wagtail 2.13 migration
This commit is contained in:
parent
ee694962bc
commit
819cc1f055
1 changed files with 18 additions and 0 deletions
|
@ -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'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue