How to fix ValidationFailedException in liquibase checksum?

I have seen it happen, not sure why. You have a few options:

  1. run a “clear-checksums” command followed by and “update” command. This will clear all md5sums and recalculate them during the update, which will prevent the error.
  2. Add --validCheckSum to your changeset with the new value. (see: Example Changelogs: SQL Format | Liquibase Docs)
  3. Update the databasechangelog table, setting the md5sum to NULL for the particular row. This will do basically the same as #1.