I have an old Liquibase .xml
file for adding an index to two columns. It is already in the DATABASECHANGELOG table and in Production, since years. But now i updated the H2 Database for my integration tests and they fail because of "article_id ". There is a blank space in the column name.
<createIndex tableName="order_journal" indexName="IDX_ArticleId_Customer">
<column name="article_id "/>
<column name="customer_id"/>
</createIndex>
My datasource configuration:
I removed the blankspace and the tests worked. Of course the application doesnt start because i edited an already commited file in the changelock. What is the common way to edit an old Liquibase file or is there an approach for the H2 database?