File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5454 "@opentelemetry/sdk-trace-node" : " ^2.5.0" ,
5555 "@opentelemetry/semantic-conventions" : " ^1.39.0" ,
5656 "@preconstruct/next" : " ^3.0.1" ,
57- "@prisma/client" : " ^4.10.1 " ,
57+ "@prisma/client" : " ^6.0.0 " ,
5858 "@rdfjs/data-model" : " ^2.0.2" ,
5959 "@rdfjs/namespace" : " ^2.0.1" ,
6060 "@reach/auto-id" : " ^0.15.3" ,
132132 "nprogress" : " ^0.2.0" ,
133133 "pixelmatch" : " ^5.3.0" ,
134134 "pngjs" : " ^7.0.0" ,
135- "prisma" : " ^4.10.1" ,
136135 "qs" : " ^6.13.1" ,
137136 "rdf-cube-view-query" : " ^2.1.1" ,
138137 "rdf-ext" : " ^1.3.2" ,
244243 "io-ts-to-json-schema" : " ^0.2.0" ,
245244 "jsdom" : " ^26.1.0" ,
246245 "playwright-testing-library" : " ^4.5.0" ,
247- "prettier" : " ^3.2.5"
246+ "prettier" : " ^3.2.5" ,
247+ "prisma" : " ^6.0.0"
248248 }
249249}
Original file line number Diff line number Diff line change 1+
2+ // This file was generated by Prisma and assumes you have installed the following:
3+ // npm install --save-dev prisma dotenv
4+ import "dotenv/config" ;
5+ import { defineConfig , env } from "prisma/config" ;
6+
7+ export default defineConfig ( {
8+ schema : "app/prisma/schema.prisma" ,
9+ migrations : {
10+ path : "app/prisma/migrations" ,
11+ } ,
12+ engine : "classic" ,
13+ datasource : {
14+ url : env ( "DATABASE_URL" ) ,
15+ } ,
16+ } ) ;
You can’t perform that action at this time.
0 commit comments