-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2533 from stellar/release-horizon-v1.2.1
Merge release-horizon-v.1.2.1 into master
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
services/horizon/internal/db2/schema/migrations/35_drop_participant_id.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |