ipld-eth-server/db/migrations/1536710319_create_drip_drip.up.sql

12 lines
395 B
MySQL
Raw Normal View History

2018-09-12 00:34:33 +00:00
CREATE TABLE maker.drip_drip (
id SERIAL PRIMARY KEY,
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
ilk TEXT,
2018-10-19 16:55:53 +00:00
log_idx INTEGER NOT NUll,
tx_idx INTEGER NOT NUll,
2018-09-12 00:34:33 +00:00
raw_log JSONB,
2018-10-19 16:55:53 +00:00
UNIQUE (header_id, tx_idx, log_idx)
2018-10-26 13:14:17 +00:00
);
ALTER TABLE public.checked_headers
ADD COLUMN drip_drip_checked BOOLEAN NOT NULL DEFAULT FALSE;