add mocked auth

This commit is contained in:
Dzmitry_Tamashevich@epam.com
2020-10-15 01:24:12 +03:00
committed by Daniel Hutzel
parent 937d9caf2b
commit 49f6b8c060
30 changed files with 151 additions and 271 deletions

View File

@@ -17,6 +17,7 @@ aspect Persone {
phone : String(24);
fax : String(24);
email : String(60);
password : String(111);
}
entity MediaTypes : Named {}
@@ -82,15 +83,16 @@ entity InvoiceItems {
}
entity Tracks {
key ID : Integer;
name : String(200);
album : Association to Albums;
mediaType : Association to MediaTypes;
genre : Association to Genres;
composer : String(220);
milliseconds : Integer;
bytes : Integer;
unitPrice : Decimal(10, 2);
invoices : Association to many InvoiceItems
on invoices.track = $self
key ID : Integer;
name : String(200);
album : Association to Albums;
mediaType : Association to MediaTypes;
genre : Association to Genres;
composer : String(220);
milliseconds : Integer;
bytes : Integer;
unitPrice : Decimal(10, 2);
invoiceItems : Association to many InvoiceItems
on invoiceItems.track = $self;
virtual alreadyOrdered : Boolean;
}