Upgrade Prisma v6.6.0.

This commit is contained in:
Mike Cao 2025-04-26 21:25:55 -07:00
parent be3972bfb6
commit 5cbf5a567c
5 changed files with 154 additions and 58 deletions

7
prisma.config.ts Normal file
View file

@ -0,0 +1,7 @@
import path from 'node:path';
import { defineConfig } from 'prisma/config';
export default defineConfig({
earlyAccess: true,
schema: path.join('prisma', 'schema.prisma'),
});