Skip to content

Commit 0773c1e

Browse files
committed
fix: prisma version, config
1 parent cfc898f commit 0773c1e

4 files changed

Lines changed: 2848 additions & 2651 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@emotion/react": "^11.8.2",
2626
"@emotion/styled": "^11.8.1",
2727
"@paybutton/react": "latest",
28-
"@prisma/client": "^6.3.1",
28+
"@prisma/client": "^6.14.0",
2929
"@types/cors": "^2.8.10",
3030
"@types/express": "^4.17.11",
3131
"@types/helmet": "^4.0.0",

prisma.config.js

Whitespace-only changes.

prisma.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import path from 'node:path'
2+
import { defineConfig } from 'prisma/config'
3+
4+
export default defineConfig({
5+
schema: path.join('prisma-local', 'schema.prisma'),
6+
migrations: {
7+
seed: 'ts-node --compiler-options {"module":"CommonJS"} -r tsconfig-paths/register prisma-local/seed.ts'
8+
}
9+
})

0 commit comments

Comments
 (0)