Skip to content

Commit

Permalink
feat: add missing index for jwk table
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jan 4, 2024
1 parent 8e94929 commit d7859f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX hydra_jwk_nid_sid_created_at_idx;
DROP INDEX hydra_jwk_nid_sid_kid_created_at_idx;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX hydra_jwk_nid_sid_created_at_idx ON hydra_jwk (nid, sid, created_at);
CREATE INDEX hydra_jwk_nid_sid_kid_created_at_idx ON hydra_jwk (nid, sid, kid, created_at);

0 comments on commit d7859f2

Please sign in to comment.