UNPKG

typeorm

Version:

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

44 lines (42 loc) 1.51 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TableExclusion = void 0; /** * Database's table exclusion constraint stored in this class. */ class TableExclusion { // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- constructor(options) { this["@instanceof"] = Symbol.for("TableExclusion"); this.name = options.name; this.expression = options.expression; } // ------------------------------------------------------------------------- // Public Methods // ------------------------------------------------------------------------- /** * Creates a new copy of this constraint with exactly same properties. */ clone() { return new TableExclusion({ name: this.name, expression: this.expression, }); } // ------------------------------------------------------------------------- // Static Methods // ------------------------------------------------------------------------- /** * Creates exclusions from the exclusion metadata object. */ static create(exclusionMetadata) { return new TableExclusion({ name: exclusionMetadata.name, expression: exclusionMetadata.expression, }); } } exports.TableExclusion = TableExclusion; //# sourceMappingURL=TableExclusion.js.map