2025-03-02 20:15:27 -08:00

12 lines
279 B
TypeScript

import config from "@/knexfile";
import Knex from "knex";
export async function getDb(
environment: "development" | "staging" | "production" = "production",
automigrate = true
) {
const k = Knex(config[environment]);
if (automigrate) await k.migrate.up();
return k;
}