12 lines
279 B
TypeScript
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;
|
|
}
|