From 15fa7de880e0cb907ac02d94c058c8b21a9be6a8 Mon Sep 17 00:00:00 2001 From: Daniel Hutzel Date: Wed, 16 Jul 2025 17:27:07 +0200 Subject: [PATCH] . --- bookshop/srv/x-validation.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookshop/srv/x-validation.cds b/bookshop/srv/x-validation.cds index 8326afd3..b92d32a0 100644 --- a/bookshop/srv/x-validation.cds +++ b/bookshop/srv/x-validation.cds @@ -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,