Skip to content

Commit

Permalink
Fix "No inverse to CreateProcedureChange" error when using rollbackOn…
Browse files Browse the repository at this point in the history
…eChangeSetSQL (DAT-6361) (#3346)

[DAT-6361] Adds rollback script to args map when using rollbackOneChangeSet via maven to ensure inverse changeset is found if it is provided.
  • Loading branch information
abrackx committed Oct 25, 2022
1 parent 9d6d144 commit 745d022
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -166,6 +166,7 @@ private Map<String, Object> getCommandArgsObjectMap(Liquibase liquibase) throws
argsMap.put("changeSetId", this.changeSetId);
argsMap.put("changeSetAuthor", this.changeSetAuthor);
argsMap.put("changeSetPath", this.changeSetPath);
argsMap.put("rollbackScript", this.rollbackScript);
return argsMap;
}
}

0 comments on commit 745d022

Please sign in to comment.