Skip to content

Commit

Permalink
Add object hash index
Browse files Browse the repository at this point in the history
  • Loading branch information
angelini committed Jul 17, 2024
1 parent 762b5d0 commit c8ba2b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions migrations/000007_add_hash_idx.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX CONCURRENTLY IF EXISTS objects_hash_idx;
1 change: 1 addition & 0 deletions migrations/000007_add_hash_idx.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS objects_hash_idx ON dl.objects (hash);

0 comments on commit c8ba2b5

Please sign in to comment.