Skip to content

Commit

Permalink
ft: add chains table
Browse files Browse the repository at this point in the history
Signed-off-by: bingyuyap <[email protected]>
  • Loading branch information
bingyuyap committed Aug 31, 2024
1 parent 3b59063 commit f03f072
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions database/fast-transfer-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,9 @@ CREATE TABLE redeem_swaps (
relaying_fee BIGINT NOT NULL,
redeem_time TIMESTAMP NOT NULL
);

-- Normalized table for chain name reference
CREATE TABLE chains (
id INTEGER PRIMARY KEY,
name VARCHAR(255) NOT NULL UNIQUE
)

0 comments on commit f03f072

Please sign in to comment.