I am trying to test scala play evolutions in Dev mode. The Up part in 1.sql works fine and all the necessary tables are created in DB. But I want to make sure that the Downs are also working from 1.sql. What is the best way to enforce this situation so that Downs in 1.sql will be executed when the application starts (or processes request in Dev mode)? I already have the following in config.
# Enable evolutions for default database
evolutionplugin=enabled
applyEvolutions.default=true
applyDownEvolutions.default=true
thanks.