Skip to content

Commit

Permalink
Merge pull request #2533 from stellar/release-horizon-v1.2.1
Browse files Browse the repository at this point in the history
Merge release-horizon-v.1.2.1 into master
  • Loading branch information
bartekn authored May 1, 2020
2 parents 3aecc7e + 250f7c9 commit 00d7d2f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions services/horizon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ file. This project adheres to [Semantic Versioning](http://semver.org/).
* Add `last_modified_time` to account responses. `last_modified_time` is the
closing time of the most recent ledger in which the account was modified.

## v1.2.1

* Remove `id` columns from `history_operation_participants` and `history_transaction_participants` to prevent possible integer overflow [#2532](https://github.com/stellar/go/pull/2532).

## v1.2.0

### Scheduled Breaking Changes
Expand Down
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,15 @@
-- +migrate Up

ALTER TABLE history_operation_participants
DROP COLUMN id;

ALTER TABLE history_transaction_participants
DROP COLUMN id;

-- +migrate Down

ALTER TABLE history_operation_participants
ADD COLUMN id integer;

ALTER TABLE history_transaction_participants
ADD COLUMN id integer;

0 comments on commit 00d7d2f

Please sign in to comment.