Add the ability to specify schemas to clean in a List.
In the code we prefix table names with schema => (schema.table) in SQL TRUNCATE commands.
We retrieve schema name from entity in the annotation @Table like we do for tableName.
Impacts :
Property (String) SpringJPASteps.schemaToClean has been migrated to
=> (List<String>) SpringJPASteps.schemasToClean
Add the ability to specify schemas to clean in a List. In the code we prefix table names with schema => (schema.table) in SQL TRUNCATE commands. We retrieve schema name from entity in the annotation
@Table
like we do for tableName.Impacts : Property
(String) SpringJPASteps.schemaToClean
has been migrated to =>(List<String>) SpringJPASteps.schemasToClean
Fix #344 Fix #340