Skip to content
Snippets Groups Projects
Verified Commit e2283936 authored by Hangzhi Yu's avatar Hangzhi Yu Committed by Jonathan Weth
Browse files

Fix constraint in migration

parent 1b5563eb
No related branches found
No related tags found
1 merge request!1708Resolve "All-day events with same start/end date aren't handled correctly"
Pipeline #195803 passed
......@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
),
migrations.AddConstraint(
model_name='calendarevent',
constraint=models.CheckConstraint(check=Q(date_end__gt=F('date_start')),
constraint=models.CheckConstraint(check=Q(date_end__gte=F('date_start')),
name="date_start_before_end"
),
),
......
......@@ -7,7 +7,7 @@ from django.urls import reverse
import pytest
from aleksis.core.models import Holiday, Group, OAuthApplication, Person
from aleksis.core.models import Group, Holiday, OAuthApplication, Person
pytestmark = pytest.mark.django_db
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment