ditto/scripts/db-migrate.ts

9 lines
214 B
TypeScript

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