I have one changeset in my changelog file in my spring boot application. I want to run this changeset only on prod env not on dev env. Is there any way other than using context in liquibase for running chageset in specific env only (like any kind of precondition logic)? I have changeset like this-
<changeSet id="EVENT_ARCHIVE" author="jk">
<sql>some query</sql>
</changeSet>