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