anton1980
anton1980

Reputation: 1009

Liquibase - disable checksum?

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.

Upvotes: 34

Views: 44781

Answers (1)

chris
chris

Reputation: 2627

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

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

Upvotes: 66

Related Questions