Skip to content

Commit

Permalink
feat: add missing index for jwk table (#3691)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jan 5, 2024
1 parent 8e94929 commit 39ee5e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
@@ -0,0 +1,2 @@
DROP INDEX hydra_jwk_nid_sid_created_at_idx;
DROP INDEX hydra_jwk_nid_sid_kid_created_at_idx;
@@ -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 39ee5e1

Please sign in to comment.