Running Aurora Postgres Migrations with Prisma2 on sls deploy

Hey all, I’m trying to deploy a serverless node app using prisma2 and Aurora for our data layer. I’m currently running into an issue of getting the database to have the appropriate migrations applied upon deploy. Currently, when I deploy the app, the app errors out saying that the database doesn’t contain the tables that I need (and can migrate locally). Perhaps there is a post-deploy hook in the serverless framework that I am missing that I could use to run a migration script? Anyone have any experience having the run migrations upon deploy to sync the database (maybe even with sequelize) using the serverless framework?