Hey! I understand that there is a deep discussion about how to implement migrations into Prisma, but I couldn’t find any recommendations for performing complex migrations at the time being. My hunch is that I could disable Prisma migrations in config, then change the db schema and update values on my own (for example, using
https://github.com/sheerun/knex-migrate if using Knex.js query builder, or something as simple as
https://github.com/tj/node-migrate). But how can I make sure that a schema resulting from my custom migrations match what Prisma expects?