19 lines
492 B
Python
19 lines
492 B
Python
# Generated by Django 5.0.2 on 2024-02-12 21:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("membershipworks", "0014_remove_eventext_details_timestamp"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddConstraint(
|
|
model_name="eventmeetingtime",
|
|
constraint=models.CheckConstraint(
|
|
check=models.Q(("end__gt", models.F("start"))), name="end_after_start"
|
|
),
|
|
),
|
|
]
|