Skip to content

Commit

Permalink
feat: removal of v0.0.2 migration (consolidate) (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-BaoHoanga authored Dec 27, 2024
1 parent ca7dafc commit 4cb31ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/storage/sqliteStorage/migrations/index.ts
Original file line number Diff line number Diff line change
@@ -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 };

0 comments on commit 4cb31ff

Please sign in to comment.