????
Your IP : 216.73.216.82
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Migration = void 0;
/**
* Represents entity of the migration in the database.
*/
class Migration {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
constructor(id, timestamp, name, instance, transaction) {
this.id = id;
this.timestamp = timestamp;
this.name = name;
this.instance = instance;
this.transaction = transaction;
}
}
exports.Migration = Migration;
//# sourceMappingURL=Migration.js.map