Skip to content

Commit

Permalink
Updated the styling as suggested in the PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesoliveira committed Oct 5, 2023
1 parent 7c916f6 commit cf36393
Showing 1 changed file with 12 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,33 @@
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">
<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">
<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">
<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">
<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">
<createIndex indexName="utxo_transaction_output_idx_token_notary_x500_name"
tableName="utxo_transaction_output">
<column name="token_notary_x500_name"/>
</createIndex>
</changeSet>
Expand Down

0 comments on commit cf36393

Please sign in to comment.