Skip to content

Commit

Permalink
✨ feat: update db version
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangechen committed Sep 4, 2023
1 parent ca94496 commit 51949a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/chili-storage/src/indexedDBStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { Constants, IStorage, Logger } from "chili-core";

export class IndexedDBStorage implements IStorage {
readonly version: number = 3;
readonly version: number = 4;

async get(database: string, table: string, id: string): Promise<any> {
let db = await this.open(database, table, this.version);
Expand Down

0 comments on commit 51949a7

Please sign in to comment.