forked from cerc-io/ipld-eth-server
9abe3ffa68
Convert and persist LogNote events as dent records
12 lines
362 B
SQL
12 lines
362 B
SQL
CREATE TABLE maker.dent (
|
|
db_id SERIAL PRIMARY KEY,
|
|
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
|
bid_id NUMERIC NOT NULL UNIQUE,
|
|
lot NUMERIC,
|
|
bid NUMERIC,
|
|
guy BYTEA,
|
|
tic NUMERIC,
|
|
tx_idx INTEGER NOT NUll,
|
|
raw_log JSONB
|
|
);
|