Skip to content

Commit

Permalink
feat: update migration to #67 from #96
Browse files Browse the repository at this point in the history
  • Loading branch information
httpJunkie committed Jan 18, 2025
1 parent 6456e04 commit 45524be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import migrate, { State } from './096';
import migrate, { State } from './067';
import { merge } from 'lodash';
import { captureException } from '@sentry/react-native';
import initialRootState from '../../util/test/initial-root-state';
Expand Down
File renamed without changes.
6 changes: 4 additions & 2 deletions app/store/migrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ import migration62 from './062';
import migration63 from './063';
import migration64 from './064';
import migration65 from './065';
import migration96 from './096';
import migration66 from './066';
import migration67 from './067';

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

// Enable both synchronous and asynchronous migrations
Expand Down

0 comments on commit 45524be

Please sign in to comment.