Skip to content

Commit

Permalink
added index on alt_item_source_id
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbrn committed Oct 2, 2019
1 parent 68a2465 commit deee8db
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,8 @@ object DbHandler {
CREATE INDEX ON dw.item (lower(content_type));
CREATE INDEX ON dw.item (biological_replicate_count);
CREATE INDEX ON dw.item (technical_replicate_count);
CREATE INDEX ON dw.item (item_id);"""
CREATE INDEX ON dw.item (item_id);
CREATE INDEX ON dw.item (alt_item_source_id);"""
val result = database.run(createItemViewIndexesDW)
Await.result(result, Duration.Inf)
} match {
Expand Down

0 comments on commit deee8db

Please sign in to comment.