bs3m
Version:
TS/JS migrations framework for sqlite3 databases
14 lines • 595 B
JavaScript
/** Core type definitions. */
/** Migration bitwise flags enum. */
export 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 || (MigrationFlag = {}));
//# sourceMappingURL=types.js.map