Files
alphane.ca/api/src/db/templates/sample-migration.ts
T
2026-06-19 22:20:43 -07:00

10 lines
223 B
TypeScript

import type { Knex } from "knex"
export async function up(knex: Knex): Promise<void> {
throw new Error("Not implemented")
}
export async function down(knex: Knex): Promise<void> {
throw new Error("Not implemented")
}