10 lines
223 B
TypeScript
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")
|
|
}
|