Has anyone figured out how to run migrations with Prisma programmatically? I have some sql functions and triggers I want to run through with Prisma aside the regular migration files it generates.
Previously, I'm able to that with TypeORM’s
.runMigrations
and
connection.query(<stingified sql file content>)