rename person type
This commit is contained in:
committed by
Daniel Hutzel
parent
49b8f4ef95
commit
9a63f406ec
@@ -5,7 +5,7 @@ aspect Named {
|
||||
name : String(120);
|
||||
}
|
||||
|
||||
aspect Persone {
|
||||
aspect Person {
|
||||
key ID : Integer;
|
||||
lastName : String(20);
|
||||
firstName : String(40);
|
||||
@@ -46,7 +46,7 @@ entity Albums {
|
||||
on tracks.album = $self;
|
||||
}
|
||||
|
||||
entity Employees : Persone {
|
||||
entity Employees : Person {
|
||||
reportsTo : Association to Employees;
|
||||
title : String(20);
|
||||
birthDate : DateTime;
|
||||
@@ -55,7 +55,7 @@ entity Employees : Persone {
|
||||
on subordinates.reportsTo = $self;
|
||||
}
|
||||
|
||||
entity Customers : Persone {
|
||||
entity Customers : Person {
|
||||
company : String(80);
|
||||
supportRep : Association to Employees;
|
||||
invoices : Association to many Invoices
|
||||
|
||||
Reference in New Issue
Block a user