Skip to content

Commit

Permalink
recreate migration
Browse files Browse the repository at this point in the history
  • Loading branch information
asadali145 committed Dec 2, 2024
1 parent 85b1c00 commit f005f49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cms/migrations/0073_alter_certificatepage_ceus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.16 on 2024-12-02 07:22
# Generated by Django 4.2.16 on 2024-12-02 13:55

from decimal import Decimal

Expand All @@ -21,7 +21,7 @@ class Migration(migrations.Migration):
help_text="Optional field for CEU (continuing education unit).",
max_digits=5,
null=True,
validators=[django.core.validators.MinValueValidator(Decimal("0.01"))],
validators=[django.core.validators.MinValueValidator(Decimal("0.00"))],
),
),
]
2 changes: 1 addition & 1 deletion cms/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2151,7 +2151,7 @@ class PartnerLogoPlacement(models.IntegerChoices):
blank=True,
decimal_places=2,
max_digits=5,
validators=[MinValueValidator(Decimal("0.01"))],
validators=[MinValueValidator(Decimal("0.00"))],
help_text="Optional field for CEU (continuing education unit).",
)

Expand Down

0 comments on commit f005f49

Please sign in to comment.