UNPKG

typeorm

Version:

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

18 lines (16 loc) 532 B
/** * 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; }()); export { Migration }; //# sourceMappingURL=Migration.js.map