Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: apply migration 66 #13066

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/store/migrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ import migration62 from './062';
import migration63 from './063';
import migration64 from './064';
import migration65 from './065';
import migration66 from './066';

type MigrationFunction = (state: unknown) => unknown;
type AsyncMigrationFunction = (state: unknown) => Promise<unknown>;
Expand Down Expand Up @@ -144,6 +145,7 @@ export const migrationList: MigrationsList = {
63: migration63,
64: migration64,
65: migration65,
66: migration66,
};

// Enable both synchronous and asynchronous migrations
Expand Down
Loading