From f0e48fdd86dcd45eab31d2b02c66763c19b4ab69 Mon Sep 17 00:00:00 2001 From: Bao Hoang Date: Mon, 23 Dec 2024 09:23:41 +0700 Subject: [PATCH] feat: removal of v0.0.2 migration (consolidate) --- src/core/storage/sqliteStorage/migrations/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/storage/sqliteStorage/migrations/index.ts b/src/core/storage/sqliteStorage/migrations/index.ts index 2ddff6a26..45f469038 100644 --- a/src/core/storage/sqliteStorage/migrations/index.ts +++ b/src/core/storage/sqliteStorage/migrations/index.ts @@ -1,8 +1,7 @@ import { SqlMigration, TsMigration } from "./migrations.types"; import { DATA_V001 } from "./v0.0.1-init_sql"; -import { DATA_V002 } from "./v0.0.2-credentialPrefix"; type Migration = SqlMigration | TsMigration; -const MIGRATIONS: Migration[] = [DATA_V001, DATA_V002]; +const MIGRATIONS: Migration[] = [DATA_V001]; export { MIGRATIONS };