ipld-eth-server/db/migrations/00025_create_light_sync_transactions_table.sql

20 lines
479 B
MySQL
Raw Normal View History

-- +goose Up
CREATE TABLE light_sync_transactions (
2019-03-27 04:05:30 +00:00
id SERIAL PRIMARY KEY,
header_id INTEGER NOT NULL REFERENCES headers(id) ON DELETE CASCADE,
hash VARCHAR(66),
gas_limit NUMERIC,
gas_price NUMERIC,
2019-03-27 04:05:30 +00:00
input_data BYTEA,
nonce NUMERIC,
raw BYTEA,
tx_from VARCHAR(44),
2019-03-27 04:05:30 +00:00
tx_index INTEGER,
tx_to VARCHAR(44),
2019-03-27 04:05:30 +00:00
"value" NUMERIC,
UNIQUE (header_id, hash)
);
-- +goose Down
DROP TABLE light_sync_transactions;