Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- manifest_index_unique is being used for the affected manifest
-- query so this index is currently surplus to requirements.
DROP INDEX IF EXISTS manifest_index_manifest_id_package_id_dist_id_repo_id_idx;
4 changes: 4 additions & 0 deletions datastore/postgres/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ var IndexerMigrations = []migrate.Migration{
ID: 4,
Up: runFile("indexer/04-foreign-key-cascades.sql"),
},
{
ID: 5,
Up: runFile("indexer/05-delete-manifest-index-index.sql"),
},
}

var MatcherMigrations = []migrate.Migration{
Expand Down