UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

20 lines (18 loc) 863 B
import { TypeORMError } from "./TypeORMError"; export class MissingJoinTableError extends TypeORMError { constructor(entityMetadata, relation) { super(); if (relation.inverseRelation) { this.message = `JoinTable is missing on both sides of ${entityMetadata.name}#${relation.propertyName} and ` + `${relation.inverseEntityMetadata.name}#${relation.inverseRelation.propertyName} many-to-many relationship. ` + `You need to put decorator decorator on one of the sides.`; } else { this.message = `JoinTable is missing on ${entityMetadata.name}#${relation.propertyName} many-to-many relationship. ` + `You need to put JoinTable decorator on it.`; } } } //# sourceMappingURL=MissingJoinTableError.js.map