Skip to content

Commit

Permalink
[26929] add BESTELLUNG_ENTRY index to optional db updates
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas committed Feb 6, 2025
1 parent eab0812 commit 3932d1e
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion bundles/ch.elexis.core.jpa/db/elexisdb_create_optional.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2869,5 +2869,27 @@ WHERE kontakt.id IN (
<column name="PATIENT_ID" />
</createIndex>
</changeSet>


<changeSet author="thomas" id="manual_idx1_BESTELLUNG_ENTRY">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="BESTELLUNG_ENTRY_IDX1" />
</not>
</preConditions>
<createIndex indexName="BESTELLUNG_ENTRY_IDX1"
tableName="BESTELLUNG_ENTRY">
<column name="STOCK" />
</createIndex>
</changeSet>
<changeSet author="thomas" id="manual_idx2_BESTELLUNG_ENTRY">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="BESTELLUNG_ENTRY_IDX2" />
</not>
</preConditions>
<createIndex indexName="BESTELLUNG_ENTRY_IDX2"
tableName="BESTELLUNG_ENTRY">
<column name="ARTICLE_ID" />
</createIndex>
</changeSet>
</databaseChangeLog>

0 comments on commit 3932d1e

Please sign in to comment.