How do I handle database procedural code, such as stored procedures, using a database migration tool such as Flyway?
Unlike DDL, I would not want to see changes in the stored procedure stored in several database migration files. How to process procedural code in a single file under source control, but also use database migration with a tool like Flyway?
source share