ipld-eth-server/db/migrations/00016_remove_deployment_from_tx_cids.sql

7 lines
169 B
MySQL
Raw Normal View History

2020-10-20 20:04:21 +00:00
-- +goose Up
ALTER TABLE eth.transaction_cids
DROP COLUMN deployment;
-- +goose Down
ALTER TABLE eth.transaction_cids
ADD COLUMN deployment BOOL NOT NULL DEFAULT FALSE;