Skip to content

Commit

Permalink
Merge branch 'release/1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Apr 24, 2019
2 parents 00b9b93 + ae56f1d commit 08b020a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sql/10-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ CREATE TABLE work_uri(
);
CREATE UNIQUE INDEX canonical_uri ON work_uri(work_id, uri_scheme) WHERE canonical = TRUE;

CREATE INDEX identifiers ON work_uri(uri_scheme, uri_value, canonical);
CREATE INDEX lower_titles ON work_title(lower(title));
CREATE INDEX title_length ON work_title(length(title));
CREATE INDEX identifiers ON work_uri(uri_scheme, uri_value);
CREATE INDEX ON work_title((lower(title)));
CREATE INDEX ON work_title((length(title)));

0 comments on commit 08b020a

Please sign in to comment.