add tracks main page. add get my tracks action

This commit is contained in:
Dzmitry_Tamashevich@epam.com
2020-10-08 11:17:06 +03:00
committed by Daniel Hutzel
parent 0f6444589f
commit bdbd9d425b
28 changed files with 381 additions and 8 deletions

View File

@@ -20,7 +20,12 @@ aspect Persone {
}
entity MediaTypes : Named {}
entity Genres : Named {}
entity Genres : Named {
tracks : Association to many Tracks
on tracks.genre = $self;
}
entity Playlists : Named {}
entity PlaylistTrack {
@@ -84,4 +89,6 @@ entity Tracks {
milliseconds : Integer;
bytes : Integer;
unitPrice : Decimal(10, 2);
invoices : Association to many InvoiceItems
on invoices.track.ID = $self.ID
}