D3levV
D3levV
PPrisma
Created by trojans10 on 1/19/2025 in #help-and-questions
Existing Database in snake_case
seems very hard process
10 replies
PPrisma
Created by trojans10 on 1/19/2025 in #help-and-questions
Existing Database in snake_case
@trojans10 i to will be struggling with existing db now that i have to migrate
10 replies
PPrisma
Created by D3levV on 1/20/2025 in #help-and-questions
Prisma and Google cloud run
I've ended up changing docker node version
//Dockerfile
FROM node:alpine

//prisma.config
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearchPostgres"]
binaryTargets = ["native", "debian-openssl-1.1.x", "linux-musl-openssl-3.0.x"]
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
//Dockerfile
FROM node:alpine

//prisma.config
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearchPostgres"]
binaryTargets = ["native", "debian-openssl-1.1.x", "linux-musl-openssl-3.0.x"]
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
5 replies
PPrisma
Created by D3levV on 1/20/2025 in #help-and-questions
Prisma and Google cloud run
I will give it a try with the docker RUN and let you guys know how it went
5 replies