2019-01-22 12:15:29 +00:00
|
|
|
-- +goose Up
|
2017-10-31 13:58:04 +00:00
|
|
|
CREATE TABLE transactions
|
|
|
|
(
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
tx_hash VARCHAR(66),
|
|
|
|
tx_nonce NUMERIC,
|
|
|
|
tx_to varchar(66),
|
|
|
|
tx_gaslimit NUMERIC,
|
|
|
|
tx_gasprice NUMERIC,
|
|
|
|
tx_value NUMERIC
|
2019-01-22 14:07:11 +00:00
|
|
|
);
|
2019-01-22 12:15:29 +00:00
|
|
|
|
|
|
|
-- +goose Down
|
2019-01-22 14:07:11 +00:00
|
|
|
DROP TABLE transactions;
|