Production readiness hardening and ops tooling

This commit is contained in:
2026-05-29 10:10:12 +07:00
parent e0b8f9af9a
commit 648e77cee9
68 changed files with 12222 additions and 848 deletions

View File

@ -0,0 +1,5 @@
import type { ensureSchema } from "../src/shared/db/pool";
export async function up(context: { ensureSchema: typeof ensureSchema }) {
await context.ensureSchema();
}