Skip to content

Commit

Permalink
Merge pull request #824 from worldcoin/piohei/add_missing_indexes
Browse files Browse the repository at this point in the history
Add index on status column in identities table.
  • Loading branch information
piohei authored Nov 14, 2024
2 parents e823802 + 5955979 commit 12233db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions schemas/database/018_status_index_for_identities.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX identities_status;
1 change: 1 addition & 0 deletions schemas/database/018_status_index_for_identities.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX identities_status on identities(status);

0 comments on commit 12233db

Please sign in to comment.