user3686607
user3686607

Reputation: 9

liquibase compare two changelog files

I Have done the following

  1. Generated Chnagelog for reference database
  2. Next Generated Changelog for target database

I am expecting the following

liquibase should compare this two changelog files and give me the updates

Please let me know if we can do it using liquibase

Upvotes: 0

Views: 965

Answers (1)

SteveDonie
SteveDonie

Reputation: 9016

What you are wanting to do isn't really possible right now. See this question.

How generate ChangelogFile by comparing two existing changelog files

You should be able to run liquibase diffChangeLog though to compare the two databases directly. If you cannot connect to both databases at the same time, you won't be able to use that technique though. I think the Liquibase developers are working on that capability though.

Upvotes: 1

Related Questions