UNPKG

644 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * Represents entity of the migration in the database.
5 */
6var Migration = /** @class */ (function () {
7 // -------------------------------------------------------------------------
8 // Constructor
9 // -------------------------------------------------------------------------
10 function Migration(id, timestamp, name, instance) {
11 this.id = id;
12 this.timestamp = timestamp;
13 this.name = name;
14 this.instance = instance;
15 }
16 return Migration;
17}());
18exports.Migration = Migration;
19
20//# sourceMappingURL=Migration.js.map