Hey guys! Is it possible to use prisma on an exist...
# orm-help
g
Hey guys! Is it possible to use prisma on an existing PostgreSQL database, where the tables are in a number of schemas?
p
I think it is, but you’ll be accessing different schemas with different prisma services (deployed on the same prisma server still)
If you choose such approach you’ll have separate
prisma.yml
files for each of the services
g
I have tried using
prisma introspect
This forces one to select a schema
Issue is, that I have cross-schema foreign key, which breaks the introspection