bump prisma to 7
This commit is contained in:
parent
081145f900
commit
96443b6afe
9 changed files with 815 additions and 117 deletions
12
backend/prisma.config.ts
Normal file
12
backend/prisma.config.ts
Normal 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'],
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue