Skip to content

Commit

Permalink
Remove CONCURRENTLY from Liquibase.
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBlissett committed Jul 17, 2024
1 parent 84d383c commit b80a3ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<sql splitStatements="false" stripComments="false">
<![CDATA[
DROP INDEX dataset_occurrence_download_created_idx;
CREATE INDEX CONCURRENTLY dataset_occurrence_download_created_idx ON dataset_occurrence_download (dataset_key, right(download_key, 15) DESC, left(download_key, 7) DESC);
CREATE INDEX dataset_occurrence_download_created_idx ON dataset_occurrence_download (dataset_key, right(download_key, 15) DESC, left(download_key, 7) DESC);
]]>
</sql>
</changeSet>
Expand Down

0 comments on commit b80a3ec

Please sign in to comment.