We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I have encountered an issue when I call prisma generate on Amazon Linux 2023. It reports the following error:
prisma generate
Prisma schema loaded from prisma/schema.prisma Error: (query-engine binary) Details: [Context: getDmmf] Prisma CLI Version : 4.8.0
[package] name = "prisma" version = "0.1.0" edition = "2021" [dependencies] prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.11" }
fn main() { prisma_client_rust_cli::run(); }
datasource db { provider = "postgresql" url = env("DATABASE_URL") } generator client { provider = "cargo prisma" output = "schema.rs" } model users { user_id String @id }
[alias] prisma='run --'
Just run cargo prisma generate.
cargo prisma generate
Could you help me to look at this problem? Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue
Hello, I have encountered an issue when I call
prisma generate
on Amazon Linux 2023. It reports the following error:Environment
Source codes
Cargo.toml
src/main.rs
prisma/schema.prisma
~/.cargo/config.toml
Steps
Just run
cargo prisma generate
.Could you help me to look at this problem? Thank you!
The text was updated successfully, but these errors were encountered: