Skip to content

Commit

Permalink
added missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonf committed Oct 1, 2024
1 parent eff2366 commit ec87026
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lab/experiments/migrations/0015_timeslot_end_after_start.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.11 on 2024-10-01 13:18

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("experiments", "0014_remove_experiment_additional_instructions"),
]

operations = [
migrations.AddConstraint(
model_name="timeslot",
constraint=models.CheckConstraint(check=models.Q(("end__gt", models.F("start"))), name="end_after_start"),
),
]

0 comments on commit ec87026

Please sign in to comment.