ipld-eth-server/db/migrations/00010_add_abi_to_watched_contracts.sql

8 lines
151 B
SQL

-- +goose Up
ALTER TABLE watched_contracts
ADD COLUMN contract_abi json;
-- +goose Down
ALTER TABLE watched_contracts
DROP COLUMN contract_abi;