Liquibase - disable checksum?

anton1980 picture anton1980 · Jun 1, 2015 · Viewed 19k times · Source

How can I disable checksum validation in Liquibase?

It looks like Liquibase does not provide such feature. Would it be hard to modify Liquibase to achieve that? Your opinion, please.

Answer

chris picture chris · May 27, 2016

Try adding validCheckSum to the top of your changeSet, like this:

<changeSet>
    <validCheckSum>ANY</validCheckSum>
    <!-- the rest of your changeSet here -->
</changeSet>