Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0cb79bd6dab2
Choose a base ref
...
head repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d26efb803563
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 18, 2013

  1. Copy the full SHA
    32554a3 View commit details
  2. Merge pull request #459 from mogoodrich/1.9.x

    TRUNK-4105: Add index for code column on the concept_reference_term tabl...
    dkayiwa committed Nov 18, 2013
    Copy the full SHA
    d26efb8 View commit details
Showing with 10 additions and 0 deletions.
  1. +10 −0 api/src/main/resources/liquibase-update-to-latest.xml
10 changes: 10 additions & 0 deletions api/src/main/resources/liquibase-update-to-latest.xml
Original file line number Diff line number Diff line change
@@ -6400,4 +6400,14 @@
<addForeignKeyConstraint constraintName="encounter_provider_voided_by" baseTableName="encounter_provider" baseColumnNames="voided_by" referencedTableName="users" referencedColumnNames="user_id"/>
</changeSet>

<changeSet id="20130925-TRUNK-4105" author="hannes">
<preConditions onFail="MARK_RAN">
<not><indexExists indexName="idx_code_concept_reference_term"/></not>
</preConditions>
<comment>Adding index on concept_reference_term.code column</comment>
<createIndex tableName="concept_reference_term" indexName="idx_code_concept_reference_term">
<column name="code"/>
</createIndex>
</changeSet>

</databaseChangeLog>