From 9c49454f447aa7e95181739edae4a6cdecbe8b3d Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 18 Jun 2021 17:59:54 +0200 Subject: [PATCH] . --- orders/db/schema.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orders/db/schema.cds b/orders/db/schema.cds index af6322ab..c9909051 100644 --- a/orders/db/schema.cds +++ b/orders/db/schema.cds @@ -9,8 +9,8 @@ entity Orders : cuid, managed { } entity Orders.Items { - key ID : UUID; /*key*/ up_ : Association to Orders; // REVISIT: 'key' doesn't work due to bug in runtime + key ID : UUID; product : Association to Products; amount : Integer; title : String; //> intentionally replicated as snapshot from product.title or alike