How to create a composite index using Liquibase?
This is what I still have:
<createIndex indexName="idx_value" tableName="test"> <column name="value"/> </createIndex>
I mean the following, but I just need to confirm.
<createIndex indexName="idx_value" tableName="test"> <column name="value0"/> <column name="value1"/> </createIndex>
xml postgresql liquibase
Horace heaven
source share