Skip to content

Commit

Permalink
Merge branch 'release/os/5.1' of https://github.com/corda/corda-api i…
Browse files Browse the repository at this point in the history
…nto nandor/CORE-14025/find-existing-tx-backchain
  • Loading branch information
nkovacsx committed Oct 5, 2023
2 parents faf99cd + 523413e commit 272264c
Showing 1 changed file with 26 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,35 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd">

<changeSet author="R3.Corda" id="ledger-utxo-creation-v5.1">
<createIndex
indexName="utxo_visible_transaction_state_idx_consumed"
tableName="utxo_visible_transaction_state">
<column name="consumed"/>
</createIndex>
<createIndex indexName="utxo_visible_transaction_state_idx_consumed"
tableName="utxo_visible_transaction_state">
<column name="consumed"/>
</createIndex>

<createIndex
indexName="utxo_transaction_output_idx_type"
tableName="utxo_transaction_output">
<createIndex indexName="utxo_transaction_output_idx_type"
tableName="utxo_transaction_output">
<column name="type"/>
</createIndex>

<createIndex indexName="utxo_transaction_output_idx_token_type"
tableName="utxo_transaction_output">
<column name="token_type"/>
</createIndex>

<createIndex indexName="utxo_transaction_output_idx_token_issuer_hash"
tableName="utxo_transaction_output">
<column name="token_issuer_hash"/>
</createIndex>

<createIndex indexName="utxo_transaction_output_idx_token_symbol"
tableName="utxo_transaction_output">
<column name="token_symbol"/>
</createIndex>

<createIndex indexName="utxo_transaction_output_idx_token_notary_x500_name"
tableName="utxo_transaction_output">
<column name="token_notary_x500_name"/>
</createIndex>
</changeSet>

</databaseChangeLog>

0 comments on commit 272264c

Please sign in to comment.