This commit is contained in:
D065023
2019-12-16 11:31:29 +01:00
parent e081182a7c
commit ffe633a493

View File

@@ -27,7 +27,7 @@ entity Orders : cuid, managed {
Items : Composition of many OrderItems on Items.parent = $self;
total : Decimal(9,2) @readonly;
currency : Currency;
shippingAddress : Association to one ShippingAddresses; // TODO: Composition or Association?
shippingAddress : Association to one ShippingAddresses;
}
entity OrderItems : cuid {
parent : Association to Orders;