ENT-10811: Removed index on primary key column in node_aes_encryption_keys table

The index is redundant on the primary key, and causes an issue in the schema migration for some databases, such as Oracle.
This commit is contained in:
Shams Asari 2023-09-22 15:08:11 +01:00
parent 6243088ebb
commit ea4bcd5369

View File

@ -19,10 +19,4 @@
<addPrimaryKey constraintName="node_aes_encryption_keys_pkey" tableName="node_aes_encryption_keys" columnNames="key_id"/>
</changeSet>
<changeSet author="R3.Corda" id="node_aes_encryption_keys_idx">
<createIndex indexName="node_aes_encryption_keys_idx" tableName="node_aes_encryption_keys">
<column name="key_id"/>
</createIndex>
</changeSet>
</databaseChangeLog>