import { Kysely } from 'kysely' export type Migration = { // eslint-disable-next-line @typescript-eslint/no-explicit-any up: (db: Kysely) => Promise // eslint-disable-next-line @typescript-eslint/no-explicit-any transform: (source: Kysely, db: Kysely) => Promise }