mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 17:23:57 +00:00
12 lines
302 B
Plaintext
12 lines
302 B
Plaintext
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) => {},
|
|
};
|