replace deprecated CheckConstraint.check by CheckConstraint.condition

This commit is contained in:
imperosol
2025-08-28 16:31:54 +02:00
parent 23103950b8
commit e864e82573
8 changed files with 8 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ class Migration(migrations.Migration):
migrations.AddConstraint(
model_name="membership",
constraint=models.CheckConstraint(
check=models.Q(("end_date__gte", models.F("start_date"))),
condition=models.Q(("end_date__gte", models.F("start_date"))),
name="end_after_start",
),
),