12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
import { defineConfig } from '@prisma/config';
|
|
|
|
/**
|
|
* Prisma 7 Direct Configuration
|
|
* Hardcoding URL to bypass CLI environment resolution issues.
|
|
*/
|
|
export default defineConfig({
|
|
datasource: {
|
|
url: "postgres://postgres:P9cIY8Ji1iSXOCRs9q6WbOo5xeXCdzyQjYoQ511Zmq1RY8WHLU9YKBGyjDpJ02sa@65.109.236.58:6482/postgres",
|
|
},
|
|
});
|