Added Country and Postal Code

This commit is contained in:
D065023
2019-12-03 10:58:53 +01:00
parent 692a360065
commit 28a51f4837
6 changed files with 21 additions and 1 deletions

View File

@@ -44,7 +44,9 @@ entity OrderItems : cuid {
// TODO: Use external information
entity ShippingAddresses {
key AddressID: String;
Country: String @readonly;
CityName: String @readonly;
PostalCode: String @readonly;
StreetName: String @readonly;
HouseNumber: String @readonly;
}