Test Postgres in the CI

This commit is contained in:
Alex Gleason
2024-05-26 18:37:47 -05:00
parent a6cae8f878
commit 8f3b9df1e1
3 changed files with 18 additions and 1 deletions

6
scripts/db-migrate.ts Normal file
View File

@@ -0,0 +1,6 @@
import { DittoDB } from '@/db/DittoDB.ts';
const kysely = await DittoDB.getInstance();
await kysely.destroy();
Deno.exit();