Skip to content

Commit

Permalink
🗃️ [#4771] Migration for updated help text
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Nov 26, 2024
1 parent 6f07335 commit d6ed77a
Showing 1 changed file with 26 additions and 0 deletions.
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",
),
),
]

0 comments on commit d6ed77a

Please sign in to comment.