ipld-eth-server/db/migrations/1534799167_create_dent_table.up.sql

14 lines
436 B
MySQL
Raw Normal View History

CREATE TABLE maker.dent (
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,
2018-10-19 16:48:37 +00:00
log_idx INTEGER NOT NUll,
tx_idx INTEGER NOT NUll,
raw_log JSONB,
2018-10-19 16:48:37 +00:00
UNIQUE (header_id, tx_idx, log_idx)
);