ipld-eth-server/db/migrations/00026_add_data_input_to_transactions.sql

8 lines
148 B
MySQL
Raw Normal View History

-- +goose Up
ALTER TABLE transactions
ADD COLUMN tx_input_data VARCHAR;
-- +goose Down
ALTER TABLE transactions
DROP COLUMN tx_input_data;