bump prisma to 7

This commit is contained in:
fred 2026-01-28 08:12:06 -08:00
parent 081145f900
commit 96443b6afe
9 changed files with 815 additions and 117 deletions

12
backend/prisma.config.ts Normal file
View file

@ -0,0 +1,12 @@
import 'dotenv/config';
import { defineConfig } from 'prisma/config';
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
},
datasource: {
url: process.env['DATABASE_URL'],
},
});