UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

15 lines (12 loc) 371 B
import { $Exact } from '../../types' import type { SchemaMigrations, MigrationStep } from './index' import type { SchemaVersion } from '../index' export function stepsForMigration({ migrations: schemaMigrations, fromVersion, toVersion, }: $Exact<{ migrations: SchemaMigrations fromVersion: SchemaVersion toVersion: SchemaVersion }>): MigrationStep[] | null