This commit is contained in:
Daniel
2021-06-18 17:59:54 +02:00
parent d570ad20b2
commit 9c49454f44

View File

@@ -9,8 +9,8 @@ entity Orders : cuid, managed {
} }
entity Orders.Items { entity Orders.Items {
key ID : UUID;
/*key*/ up_ : Association to Orders; // REVISIT: 'key' doesn't work due to bug in runtime /*key*/ up_ : Association to Orders; // REVISIT: 'key' doesn't work due to bug in runtime
key ID : UUID;
product : Association to Products; product : Association to Products;
amount : Integer; amount : Integer;
title : String; //> intentionally replicated as snapshot from product.title or alike title : String; //> intentionally replicated as snapshot from product.title or alike