-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[0.6] DB migrations for "Aggregation: repeat same request on retries."
- Loading branch information
Showing
3 changed files
with
11 additions
and
1 deletion.
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
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,5 @@ | ||
ALTER TABLE report_aggregations DROP COLUMN helper_encrypted_input_share; | ||
ALTER TABLE report_aggregations DROP COLUMN leader_input_share; | ||
ALTER TABLE report_aggregations DROP COLUMN leader_extensions; | ||
ALTER TABLE report_aggregations DROP COLUMN public_share; | ||
|
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,5 @@ | ||
ALTER TABLE report_aggregations ADD COLUMN public_share BYTEA; -- the public share for the report (opaque VDAF message) | ||
ALTER TABLE report_aggregations ADD COLUMN leader_extensions BYTEA; -- encoded sequence of Extension messages from Leader input share (opaque DAP messages) | ||
ALTER TABLE report_aggregations ADD COLUMN leader_input_share BYTEA; -- encoded leader input share (opaque VDAF message) | ||
ALTER TABLE report_aggregations ADD COLUMN helper_encrypted_input_share BYTEA; -- encoded HPKE ciphertext of helper input share (opaque DAP message) | ||
|