-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🗃️ [#4771] Migration for updated help text
- Loading branch information
1 parent
6f07335
commit d6ed77a
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
src/openforms/submissions/migrations/0012_alter_submission_price.py
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,26 @@ | ||
# Generated by Django 4.2.16 on 2024-11-26 10:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("submissions", "0011_remove_submissionstep__data"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="submission", | ||
name="price", | ||
field=models.DecimalField( | ||
blank=True, | ||
decimal_places=2, | ||
editable=False, | ||
help_text="Cost of this submission. Either derived from the related product, or set through logic rules. The price is calculated and saved on submission completion.", | ||
max_digits=10, | ||
null=True, | ||
verbose_name="price", | ||
), | ||
), | ||
] |