where do we request/look-up future features? my re...
# orm-help
m
where do we request/look-up future features? my request is a "read-only" option for prisma to not modify anything in the database for read-only user instances
t
technically you could do that by giving prisma a read-only DB string.
m
oh i had no idea that exists. do you add that to the end params? what does that look like?
Copy code
postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]
t
You would need to create a read-only user for your postgres DB. Then use its username / password creds within the connection string.
m
yes i have a read-only user. prisma was throwing an error on trying to do
npx prisma db pull
after making a connection and failing to generate the files from introspection