forked from cerc-io/ipld-eth-server
Deal transformer (#19)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE maker.deal;
|
||||
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE maker.deal (
|
||||
id SERIAL PRIMARY KEY,
|
||||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
||||
bid_id NUMERIC NOT NULL,
|
||||
tx_idx INTEGER NOT NUll,
|
||||
raw_log JSONB,
|
||||
UNIQUE (header_id, tx_idx)
|
||||
);
|
||||
Reference in New Issue
Block a user