Hello everyone,
After generating changelog for my database changes and saving it, I find myself in a scenario where I need to recreate the changelog. However, upon attempting to generate it anew, Liquibase suggests incorporating the same changes I had previously included and saved.
This repetitive behavior is puzzling because I would expect Liquibase to recognize the changes have already been applied or at least saved in the previous changelog.
There are the changesets :
<changeSet id="5"
author="com">
<createIndex indexName="IDX_COM_DATA_ORIGIN_UNQ"
tableName="COM_DATA_ORIGIN"
unique="true">
<column name="CODE"/>
<column name="SEARCH_KEY"/>
</createIndex>
</changeSet>
I’m looking for advice on how to proceed in such a situation.
Thank you in advance