ditto/scripts/db-migrate.ts
2024-09-11 13:23:06 -05:00

9 lines
198 B
TypeScript

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