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; }