ipld-eth-server/migrations/1509119369_initial_transaction_table.up.sql

10 lines
183 B
MySQL
Raw Normal View History

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
)