UNPKG

typeorm

Version:

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

18 lines (16 loc) 536 B
/** * Represents entity of the migration in the database. */ export class Migration { // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- constructor(id, timestamp, name, instance, transaction) { this.id = id; this.timestamp = timestamp; this.name = name; this.instance = instance; this.transaction = transaction; } } //# sourceMappingURL=Migration.js.map