Skip to content

Commit

Permalink
Add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewCalderSpringload committed Oct 30, 2023
1 parent ad59866 commit 5603bbf
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions core/migrations/0016_auto_20231030_1543.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Generated by Django 3.2.13 on 2023-10-30 02:43

from django.db import migrations, models

import wagtail.contrib.forms.models


class Migration(migrations.Migration):

dependencies = [
("core", "0015_alter_wagtailcompanypage_coords"),
]

operations = [
migrations.AlterField(
model_name="submitformfield",
name="choices",
field=models.TextField(
blank=True,
help_text="Comma or new line separated list of choices. Only applicable in checkboxes, radio and dropdown.",
verbose_name="choices",
),
),
migrations.AlterField(
model_name="submitformfield",
name="default_value",
field=models.TextField(
blank=True,
help_text="Default value. Comma or new line separated values supported for checkboxes.",
verbose_name="default value",
),
),
migrations.AlterField(
model_name="submitformpage",
name="from_address",
field=models.EmailField(
blank=True, max_length=255, verbose_name="from address"
),
),
migrations.AlterField(
model_name="submitformpage",
name="to_address",
field=models.CharField(
blank=True,
help_text="Optional - form submissions will be emailed to these addresses. Separate multiple addresses by comma.",
max_length=255,
validators=[wagtail.contrib.forms.models.validate_to_address],
verbose_name="to address",
),
),
]

0 comments on commit 5603bbf

Please sign in to comment.