mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-22 02:13:59 +00:00
12 lines
301 B
Plaintext
12 lines
301 B
Plaintext
import type { HydraMigration } from "@main/knex-client";
|
|
import type { Knex } from "knex";
|
|
|
|
export const MigrationName: HydraMigration = {
|
|
name: "MigrationName",
|
|
up: async (knex: Knex) => {
|
|
await knex.schema.createTable("table_name", (table) => {});
|
|
},
|
|
|
|
down: async (knex: Knex) => {},
|
|
};
|