#94 RelationInfo.isManyToOne

This commit is contained in:
Kononnable 2018-08-26 01:51:09 +02:00
parent f3a79c2e38
commit d7ee4990c1

View File

@ -25,6 +25,6 @@ export class RelationInfo {
return this.relationType == "OneToOne";
}
get isManyToOne(): boolean {
return this.relationType == "OneToOne";
return this.relationType == "ManyToOne";
}
}