diff --git a/src/models/RelationInfo.ts b/src/models/RelationInfo.ts index 10b9824..fb74a3f 100644 --- a/src/models/RelationInfo.ts +++ b/src/models/RelationInfo.ts @@ -25,6 +25,6 @@ export class RelationInfo { return this.relationType == "OneToOne"; } get isManyToOne(): boolean { - return this.relationType == "OneToOne"; + return this.relationType == "ManyToOne"; } }