import type { HydraMigration } from "@main/knex-client"; import type { Knex } from "knex"; export const MigrationName: HydraMigration = { name: "MigrationName", up: (knex: Knex) => { return knex.schema.createTable("table_name", async (table) => {}); }, down: async (knex: Knex) => {}, };