Skip to content

Commit

Permalink
view(schema): update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor committed Apr 25, 2024
1 parent 4b07e97 commit b592074
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/view/src/storage/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ CREATE TABLE positions (
trading_pair TEXT NOT NULL
);

-- This table records the auction state, using the asset id
-- as a primary key, so that we can have multiple rows with
-- matching auction ids but differing states and associated
-- note commitments.
-- This table records the user's own auction state, using the
-- auction id as a primary key. An extra-column is available
-- to cross-reference note commitments that is associated with
-- the entry.
CREATE TABLE auctions (
auction_id BLOB PRIMARY KEY NOT NULL,
auction_state BIGINT NOT NULL,
note_commitment BLOB
);
);

0 comments on commit b592074

Please sign in to comment.