typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
19 lines (17 loc) • 558 B
JavaScript
/**
* Represents entity of the migration in the database.
*/
var Migration = /** @class */ (function () {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
function Migration(id, timestamp, name, instance) {
this.id = id;
this.timestamp = timestamp;
this.name = name;
this.instance = instance;
}
return Migration;
}());
export { Migration };
//# sourceMappingURL=Migration.js.map