bs3m
Version:
TS/JS migrations framework for sqlite3 databases
17 lines • 721 B
JavaScript
;
/** Core type definitions. */
Object.defineProperty(exports, "__esModule", { value: true });
exports.MigrationFlag = void 0;
/** Migration bitwise flags enum. */
var MigrationFlag;
(function (MigrationFlag) {
MigrationFlag[MigrationFlag["NONE"] = 0] = "NONE";
/**
* Signifies that migration is using attached mode. Must be a flag to allow
* inferring the mode from the migration string id, since attached and
* non-attached migrations can not be run in the same transaction.
*/
MigrationFlag[MigrationFlag["ATTACHED"] = 1] = "ATTACHED";
// Future flags can be added here
})(MigrationFlag || (exports.MigrationFlag = MigrationFlag = {}));
//# sourceMappingURL=types.js.map