From 51ee6d167cf89be1e0ccfdba1d2c5c79f101233f Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 25 Mar 2021 01:06:10 +0100 Subject: [PATCH] added comment --- 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 60d0a2a1..0911a4c4 100644 --- a/orders/db/schema.cds +++ b/orders/db/schema.cds @@ -13,7 +13,7 @@ entity Orders_Items { up_ : Association to Orders; product : Association to Products @assert.integrity:false; // REVISIT: this is a temporary workaround for a glitch in cds-runtime amount : Integer; - title : String; + title : String; //> intentionally replicated as snapshot from product.title price : Double; }