Liquibase - 禁用校验和?
Liquibase - disable checksum?
如何在 Liquibase 中禁用校验和验证?
Liquibase 好像没有提供这样的功能。修改 Liquibase 来实现它会很难吗?请大家发表意见。
找到这个 "You should be able to add an empty node to signify that the checksum should always be updated and should not fail if you have changeSets whos checksum is expected to change on a regular basis."
http://forum.liquibase.org/topic/calculation-of-checksum-md5sum#49382000000026967
尝试将 validCheckSum
添加到 changeSet
的顶部,如下所示:
<changeSet>
<validCheckSum>ANY</validCheckSum>
<!-- the rest of your changeSet here -->
</changeSet>
如何在 Liquibase 中禁用校验和验证?
Liquibase 好像没有提供这样的功能。修改 Liquibase 来实现它会很难吗?请大家发表意见。
找到这个 "You should be able to add an empty node to signify that the checksum should always be updated and should not fail if you have changeSets whos checksum is expected to change on a regular basis." http://forum.liquibase.org/topic/calculation-of-checksum-md5sum#49382000000026967
尝试将 validCheckSum
添加到 changeSet
的顶部,如下所示:
<changeSet>
<validCheckSum>ANY</validCheckSum>
<!-- the rest of your changeSet here -->
</changeSet>