2019-03-19 19:39:26 +00:00
|
|
|
-- +goose Up
|
2019-08-06 21:57:08 +00:00
|
|
|
CREATE TABLE header_sync_transactions
|
|
|
|
(
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
|
|
|
hash VARCHAR(66),
|
|
|
|
gas_limit NUMERIC,
|
|
|
|
gas_price NUMERIC,
|
|
|
|
input_data BYTEA,
|
|
|
|
nonce NUMERIC,
|
|
|
|
raw BYTEA,
|
|
|
|
tx_from VARCHAR(44),
|
|
|
|
tx_index INTEGER,
|
|
|
|
tx_to VARCHAR(44),
|
|
|
|
"value" NUMERIC,
|
|
|
|
UNIQUE (header_id, hash)
|
2019-03-19 19:39:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
-- +goose Down
|
2019-05-01 06:02:30 +00:00
|
|
|
DROP TABLE header_sync_transactions;
|