ditto/scripts/db-migrate.ts

9 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();