Skip to content

Commit

Permalink
fix: add all_authorization_requests table
Browse files Browse the repository at this point in the history
  • Loading branch information
nanderstabel committed Oct 7, 2024
1 parent c447d56 commit 5ad6fd5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions agent_application/docker/db/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,14 @@ CREATE TABLE authorization_request
PRIMARY KEY (view_id)
);

CREATE TABLE all_authorization_requests
(
view_id text NOT NULL,
version bigint CHECK (version >= 0) NOT NULL,
payload json NOT NULL,
PRIMARY KEY (view_id)
);

CREATE TABLE connection
(
view_id text NOT NULL,
Expand Down

0 comments on commit 5ad6fd5

Please sign in to comment.