Reputation: 1009
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
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