mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
11 lines
302 B
Text
11 lines
302 B
Text
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) => {},
|
|
};
|