import { Kysely } from "kysely";

export async function up(db: Kysely<any>): Promise<void> {
  // Empty migration to fix corrupted migrations error
  // The original migration was deleted, but it was already executed in the local database.
}

export async function down(db: Kysely<any>): Promise<void> {
  // Empty migration to fix corrupted migrations error
}
