/**
 * Knex CLI entry point (`npm run migrate*`). The real config lives in
 * src/lib/knex-config.ts so a single object is shared with the runtime instance
 * in src/lib/db.ts. This file exists only because the knex CLI looks for a
 * root `knexfile`. It is run via tsx and is never part of the `tsc` build.
 *
 * PLANNING.md §11: migrations run over SSH with `npm run migrate`, never on boot.
 */
export { default } from './src/lib/knex-config';
