Skip to content

Commit ab7447c

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature-tree-table
2 parents e77f4f4 + bde2090 commit ab7447c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

db/books.cds

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ namespace my.bookshop;
22

33
using {
44
Currency,
5-
sap,
65
managed,
76
cuid
87
} from '@sap/cds/common';
@@ -48,8 +47,10 @@ annotate Authors with
4847
/**
4948
* Hierarchically organized Code List for Genres
5049
*/
51-
entity Genres : sap.common.CodeList {
50+
entity Genres {
5251
key ID : Integer;
52+
name : localized String(255);
53+
descr : localized String(1000);
5354
parent : Association to Genres;
5455
children : Composition of many Genres
5556
on children.parent = $self;

0 commit comments

Comments
 (0)