ipld-eth-server/db/migrations/1512507280_add_node_fk_to_blocks.up.sql

5 lines
127 B
SQL

ALTER TABLE blocks
ADD COLUMN node_id INTEGER NOT NULL,
ADD CONSTRAINT node_fk
FOREIGN KEY (node_id)
REFERENCES nodes (id);