-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad59866
commit 5603bbf
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
), | ||
), | ||
] |