Suppose I have the following changeSet in an SQL file:
-- liquibase formatted sql
-- changeset amr:my_id
CREATE TABLE XYZ...
And then after executing this change set on the different environments I added a rollback statement to rollback this changeSet:
-- liquibase formatted sql
-- changeset amr:my_id
CREATE TABLE XYZ...
-- rollback DROP TABLE XYZ
Is adding rollback after executing a changeSet wrong? Does it affect the check sum?