Skip to content

Commit

Permalink
grscicoll lookup indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-lg committed Aug 26, 2024
1 parent 3b7d90b commit 1955bf1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">

<changeSet id="142" author="mlopez" runInTransaction="false">
<sql splitStatements="false" stripComments="true">
<![CDATA[
CREATE INDEX identifier_type_idx ON identifier(type);
CREATE INDEX institution_alt_codes_idx ON institution USING gin(alternative_codes);
CREATE INDEX collection_alt_codes_idx ON collection USING gin(alternative_codes);
]]>
</sql>
</changeSet>
</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,5 @@
<include file="liquibase/139-dataset-occurrence-download-created-index.xml" />
<include file="liquibase/140-ih-identifier-change-sugestion.xml" />
<include file="liquibase/141-collection-descriptors-grscicoll.xml" />
<include file="liquibase/142-grscicoll_lookup_indexes.xml" />
</databaseChangeLog>

0 comments on commit 1955bf1

Please sign in to comment.