How can I create liquibase changeset custom rules?
The Problem
I want to make rules in my team, in which people don't do dangerous change on liquibase without knowing. I consider the dangerous things, specially things that make the database unusable to the old version of the application, making a rollback impossible.
Solution I thought Create a custom rule to validate the changesets, in which we forbid changes like: dropColumn, delete, dropTable, renameColumn
All these changes would break the build on maven, except if there is a comment on the same changeset with something like "i know what i'm doing".
The Question
Does liquibase offer any extension point where I can create this rule?