Skip to content

Commit

Permalink
view(storage): add distributions_params table
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor committed Nov 20, 2023
1 parent b8e719d commit 524e3c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/view/src/storage/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ CREATE TABLE governance_params (bytes BLOB NOT NULL);
CREATE TABLE chain_params (bytes BLOB NOT NULL);
CREATE TABLE dao_params (bytes BLOB NOT NULL);
CREATE TABLE fee_params (bytes BLOB NOT NULL);
CREATE TABLE distributions_params (bytes BLOB NOT NULL);
CREATE TABLE fmd_parameters (bytes BLOB NOT NULL);
CREATE TABLE full_viewing_key (bytes BLOB NOT NULL);
CREATE TABLE sync_height (height BIGINT NOT NULL);
Expand Down Expand Up @@ -129,4 +130,4 @@ CREATE TABLE positions (
position_id BLOB PRIMARY KEY NOT NULL,
position_state TEXT NOT NULL,
trading_pair TEXT NOT NULL
);
);

0 comments on commit 524e3c5

Please sign in to comment.