ipld-eth-server/db/migrations/00009_add_from_to_transactions.sql
2019-02-26 00:52:54 -06:00

9 lines
137 B
SQL

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