-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fully migrate AS storage provider to backend
- Loading branch information
Showing
32 changed files
with
578 additions
and
1,307 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
backend/migrations/20231124125801_create_as_batched_keys_table.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,10 @@ | ||
-- SPDX-FileCopyrightText: 2023 Phoenix R&D GmbH <[email protected]> | ||
-- | ||
-- SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
-- migrations/{timestamp}_create_as_batched_keys_table.sql | ||
CREATE TABLE as_batched_keys( | ||
token_key_id smallint NOT NULL, | ||
PRIMARY KEY (token_key_id), | ||
voprf_server BYTEA NOT NULL | ||
); |
12 changes: 12 additions & 0 deletions
12
backend/migrations/20231129125623_create_opaque_setup_table.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,12 @@ | ||
-- SPDX-FileCopyrightText: 2023 Phoenix R&D GmbH <[email protected]> | ||
-- | ||
-- SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
-- migrations/{timestamp}_create_opaque_setup_table.sql | ||
-- Create opaque setup Table | ||
CREATE TABLE opaque_setup( | ||
id uuid NOT NULL, | ||
PRIMARY KEY (id), | ||
opaque_setup BYTEA NOT NULL | ||
); | ||
|
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
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
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
Oops, something went wrong.