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.
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.
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>