Files
ditto/scripts/db-migrate.ts
2024-09-11 11:48:58 -05:00

10 lines
207 B
TypeScript

import { DittoDB } from '@/db/DittoDB.ts';
// This migrates kysely internally.
const { kysely } = await DittoDB.getInstance();
// Close the connection before exiting.
await kysely.destroy();
Deno.exit();