typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
49 lines (47 loc) • 1.71 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Database's table check constraint stored in this class.
*/
var TableCheck = /** @class */ (function () {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
function TableCheck(options) {
/**
* Column that contains this constraint.
*/
this.columnNames = [];
this.name = options.name;
this.columnNames = options.columnNames;
this.expression = options.expression;
}
// -------------------------------------------------------------------------
// Public Methods
// -------------------------------------------------------------------------
/**
* Creates a new copy of this constraint with exactly same properties.
*/
TableCheck.prototype.clone = function () {
return new TableCheck({
name: this.name,
columnNames: this.columnNames ? this.columnNames.slice() : [],
expression: this.expression,
});
};
// -------------------------------------------------------------------------
// Static Methods
// -------------------------------------------------------------------------
/**
* Creates checks from the check metadata object.
*/
TableCheck.create = function (checkMetadata) {
return new TableCheck({
name: checkMetadata.name,
expression: checkMetadata.expression
});
};
return TableCheck;
}());
exports.TableCheck = TableCheck;
//# sourceMappingURL=TableCheck.js.map