This commit is contained in:
Daniel Hutzel
2025-07-16 17:27:07 +02:00
parent 04d659c9c2
commit 15fa7de880

View File

@@ -54,7 +54,7 @@ view Authors.constraints as select from Authors { ID,
null as name,
// constraint related to two fields
dateOfDeath > dateOfBirth ? 'date of birth must be before date of death' : null as _born_before_death,
dateOfDeath > dateOfBirth ? 'we must be born before we die' : null as _born_before_death,
$self._born_before_death as dateOfBirth,
$self._born_before_death as dateOfDeath,