mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
15 lines
436 B
TypeScript
15 lines
436 B
TypeScript
export { StorageMigration } from "./base";
|
|
export { StorageVersionManager } from "./version-manager";
|
|
export { runStorageMigrations } from "./runner";
|
|
import { V0toV1Migration } from "./v0-to-v1";
|
|
import { V1toV2Migration } from "./v1-to-v2";
|
|
import { V2toV3Migration } from "./v2-to-v3";
|
|
|
|
export const CURRENT_STORAGE_VERSION = 3;
|
|
|
|
export const migrations = [
|
|
new V0toV1Migration(),
|
|
new V1toV2Migration(),
|
|
new V2toV3Migration(),
|
|
];
|