How to interact with database in prisma studio after deployment?
After deploying I set DATABASE_URL=<database_string> in main.wasp to try and see if i could interact with it like we could in development using
wasp db studio, i also triedexport DATABASE_URL="<database_string>"npx prisma studio --schema=./.wasp/out/db/schema.prisma
in terminal, but it can't seem to be connecting.
Is there a work around this?

