commit
ffdf0a0d4d
@ -0,0 +1,9 @@
|
|||||||
|
-- +goose Up
|
||||||
|
ALTER TABLE eth.log_cids
|
||||||
|
ADD CONSTRAINT fk_log_leaf_mh_key
|
||||||
|
FOREIGN KEY (leaf_mh_key) REFERENCES public.blocks (key)
|
||||||
|
ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
ALTER TABLE eth.log_cids
|
||||||
|
DROP CONSTRAINT fk_log_leaf_mh_key;
|
@ -21,7 +21,15 @@ WHERE indrelid = (
|
|||||||
WHERE relname='eth.header_cids'
|
WHERE relname='eth.header_cids'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
ALTER TABLE eth.log_cids
|
||||||
|
DROP CONSTRAINT fk_log_leaf_mh_key;
|
||||||
|
|
||||||
-- +goose Down
|
-- +goose Down
|
||||||
|
ALTER TABLE eth.log_cids
|
||||||
|
ADD CONSTRAINT fk_log_leaf_mh_key
|
||||||
|
FOREIGN KEY (leaf_mh_key) REFERENCES public.blocks (key)
|
||||||
|
ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
|
||||||
|
|
||||||
UPDATE pg_index
|
UPDATE pg_index
|
||||||
SET indisready=true
|
SET indisready=true
|
||||||
WHERE indrelid = (
|
WHERE indrelid = (
|
Loading…
Reference in New Issue
Block a user