This commit is contained in:
Daniel Hutzel
2023-11-06 04:58:43 +01:00
parent 1ea4b15d77
commit 1e0ac9609c

View File

@@ -3,14 +3,14 @@ namespace sap.capire.bookshop;
entity Books : managed {
key ID : Integer;
title : localized String(111) @mandatory ;
title : localized String(111) @mandatory;
descr : localized String(1111);
author : Association to Authors @mandatory;
genre : Association to Genres;
stock : Integer;
price : Decimal;
currency : Currency;
image : LargeBinary @Core.MediaType : 'image/png';
image : LargeBinary @Core.MediaType: 'image/png';
}
entity Authors : managed {