ipld-eth-server/db/migrations/1515613715_update_node_index.down.sql
2018-01-10 15:54:36 -06:00

10 lines
142 B
PL/PgSQL

BEGIN;
ALTER TABLE nodes
DROP CONSTRAINT node_uc;
ALTER TABLE nodes
ADD CONSTRAINT node_uc UNIQUE (genesis_block, network_id);
COMMIT;