Apply evolutions for the given database.
Apply evolutions for the given database.
The database to apply the evolutions to.
The reader to read the evolutions.
Whether to use autocommit or not, evolutions will be manually committed if false.
The schema where all the play evolution tables are saved in
Cleanup evolutions for the given database.
Cleanup evolutions for the given database.
This will leave the database in the original state it was before evolutions were applied, by running the down scripts for all the evolutions that have been previously applied to the database.
The database to clean the evolutions for.
Whether to use atocommit or not, evolutions will be manually committed if false.
The schema where all the play evolution tables are saved in
Compare two evolution sequences.
Compare two evolution sequences.
the seq of downs
the seq of ups
the downs and ups to run to have the db synced to the current stage
Default evolutions directory location.
Default evolution file location.
Default evolution resource name.
Translates evolution scripts into something human-readable.
Translates evolution scripts into something human-readable.
the evolution scripts
a formatted script
Updates a local (file-based) evolution script.
Execute the following code block with the evolutions for the database, cleaning up afterwards by running the downs.
Execute the following code block with the evolutions for the database, cleaning up afterwards by running the downs.
The database to execute the evolutions on
The evolutions reader to use. Defaults to reading evolutions from the evolution readers own classloader.
Whether to use autocommit or not, evolutions will be manually committed if false.
The schema where all the play evolution tables are saved in
The block to execute
Apply pending evolutions for the given database.
Apply pending evolutions for the given database.
(Since version 2.6.0) Inject or create an instance of EvolutionsApi and use EvolutionsApi#applyFor
Defines Evolutions utilities functions.