Matusko167
PPrisma
•Created by Matusko167 on 3/6/2025 in #help-and-questions
Prisma postgresql
Hello i have a problem with generate client
Environment variables loaded from ../.env
Prisma schema loaded from schema.prisma
Datasource "db": PostgreSQL database
Error: Prisma schema validation - (get-config wasm)
Error code: P1012
error: Error validating datasource
db
: the URL must start with the protocol postgresql://
or postgres://
.
To use a URL with protocol prisma://
the Data Proxy must be enabled via prisma generate --data-proxy
.
More information about Data Proxy: https://pris.ly/d/data-proxy
--> schema.prisma:3
|
2 | provider = "postgres"
3 | url = env("DATABASE_URL")
|
Validation Error Count: 1
[Context: getConfig]
Prisma CLI Version : 4.16.0
my env=
DATABASE_URL="prisma+postgres://accelerate.prisma-data.net/?api_key=xxxx"
datasource db {
provider = "postgres"
url = env("DATABASE_URL")
}5 replies
PPrisma
•Created by Matusko167 on 6/7/2024 in #help-and-questions
make from model.prisma sql
Hello its possible to just get some method to do that too send model.prisma inside some function and get return sql? or send to models and get difference sql like alter? becouse we dont want to use prisma db push or prisma migrate and make our own flow to create tables
15 replies
PPrisma
•Created by Matusko167 on 5/22/2024 in #help-and-questions
Prisma custom flow
Hello we are trying to make something like our prisma flow like we want to controll when something happend like we want to controll when generate client and when creating migrations etc... It is possible to do it?
Thanks
5 replies