Skip to content

Commit

Permalink
Merge branch 'master' into release-horizon-v2.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Oct 12, 2022
2 parents be4b1c7 + 947c2a6 commit b2dc319
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
23 changes: 23 additions & 0 deletions services/horizon/internal/db2/schema/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- +migrate Up

CREATE INDEX "trust_lines_by_type_code_issuer_account" ON trust_lines USING btree (asset_type, asset_code, asset_issuer, account_id);
DROP INDEX "trust_lines_by_type_code_issuer";

-- +migrate Down

DROP INDEX "trust_lines_by_type_code_issuer_account";
CREATE INDEX "trust_lines_by_type_code_issuer" ON trust_lines USING btree (asset_type, asset_code, asset_issuer);

0 comments on commit b2dc319

Please sign in to comment.