ipld-eth-server/db/migrations/20180820230607_create_dent.sql

24 lines
639 B
MySQL
Raw Normal View History

-- +goose Up
CREATE TABLE maker.dent (
id SERIAL PRIMARY KEY,
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
2018-11-01 20:03:08 +00:00
bid_id NUMERIC NOT NULL,
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)
);
2018-10-26 13:17:30 +00:00
ALTER TABLE public.checked_headers
2018-11-01 20:03:08 +00:00
ADD COLUMN dent_checked BOOLEAN NOT NULL DEFAULT FALSE;
-- +goose Down
DROP TABLE maker.dent;
ALTER TABLE public.checked_headers
DROP COLUMN dent_checked;