Hello all, Quick question about your experiences ...
# orm-help
r
Hello all, Quick question about your experiences deploying Prisma from an existing Postgresql database. It introspects fine for me, but when I try and deploy the service, I get an error from Postgresql stating some fields already exist. The only way I can bypass this is by deleting the offending table and letting Prisma re create them, but then I lose the data. My understanding from the docs and the getting started page is that I should be able to launch a service from an existing DB without issue and without data loss. Is there something fundamental I'm missing here from the way Prisma deploys the service? I don't see why Prisma would need to create a table if it's already there? Am I missing a setting in my docker-compose file perhaps? Thanks!