We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da1f912 commit b742f4eCopy full SHA for b742f4e
package.json
@@ -78,9 +78,6 @@
78
"typescript": "^5.9.2",
79
"typescript-eslint": "^8.39.0"
80
},
81
- "prisma": {
82
- "seed": "ts-node prisma/seed.ts"
83
- },
84
"jest": {
85
"moduleFileExtensions": [
86
"js",
prisma.config.ts
@@ -0,0 +1,7 @@
1
+import { defineConfig } from "prisma/config";
2
+
3
+export default defineConfig({
4
+ migrations: {
5
+ seed: `ts-node prisma/seed.ts`
6
+ }
7
+});
0 commit comments