Files
hydra/src/main/migrations/migration.stub
2024-08-30 14:13:10 -03:00

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) => {},
};