return bool flag

This commit is contained in:
Tamashevich, Dzmitry
2020-11-09 12:34:27 +03:00
committed by Daniel Hutzel
parent c932b486e1
commit 3d1502ddfe

View File

@@ -89,21 +89,22 @@ entity InvoiceItems {
} }
entity Tracks { entity Tracks {
key ID : Integer; key ID : Integer;
name : String(200); name : String(200);
album : Association to Albums; album : Association to Albums;
mediaType : Association to MediaTypes; mediaType : Association to MediaTypes;
genre : Association to Genres; genre : Association to Genres;
composer : String(220); composer : String(220);
milliseconds : Integer default 230619; milliseconds : Integer default 230619;
bytes : Integer default 3990994; bytes : Integer default 3990994;
unitPrice : Decimal(10, 2) default 0.99; unitPrice : Decimal(10, 2) default 0.99;
virtual alreadyOrdered : Boolean;
// Two compositions below needed for cascade delete track // Two compositions below needed for cascade delete track
invoiceItems : Composition of many InvoiceItems invoiceItems : Composition of many InvoiceItems
on invoiceItems.track = $self; on invoiceItems.track = $self;
playlistTracks : Composition of many { playlistTracks : Composition of many {
key playlist : Association to Playlists; key playlist : Association to Playlists;
key track : Association to Tracks; key track : Association to Tracks;
}; };
}; };