import { drizzle } from 'drizzle-orm/postgres-js'; import postgres from 'postgres'; import * as schema from './schema/index.js'; export function createDb(connectionString: string) { const client = postgres(connectionString); return drizzle(client, { schema }); } export type Database = ReturnType; export * from './schema/index.js';