Skip to content

Commit

Permalink
Add index for blob_id on objects table
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Shishkin <[email protected]>
  • Loading branch information
teran committed Dec 14, 2024
1 parent 62b5dbc commit fa52f38
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
BEGIN;

DROP INDEX objects_blob_id_idx;

COMMIT;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
BEGIN;

CREATE INDEX objects_blob_id_idx ON objects (blob_id);

COMMIT;

0 comments on commit fa52f38

Please sign in to comment.