ipld-eth-server/db/migrations/00009_add_from_to_transactions.sql

9 lines
137 B
MySQL
Raw Normal View History

-- +goose Up
ALTER TABLE transactions
ADD COLUMN tx_from VARCHAR(66);
-- +goose Down
ALTER TABLE transactions
DROP COLUMN tx_from;