UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, WebSQL, MongoDB databases.

20 lines (18 loc) 618 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents entity of the migration in the database. */ var Migration = /** @class */ (function () { // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- function Migration(timestamp, name, instance) { this.timestamp = timestamp; this.name = name; this.instance = instance; } return Migration; }()); exports.Migration = Migration; //# sourceMappingURL=Migration.js.map