cid database table migrations

This commit is contained in:
Ian Norden
2019-12-02 13:24:46 -06:00
parent 1921c06b02
commit e033eabc28
5 changed files with 53 additions and 0 deletions
@@ -0,0 +1,11 @@
-- +goose Up
CREATE TABLE public.header_cids (
id SERIAL PRIMARY KEY,
block_number BIGINT NOT NULL,
block_hash VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
UNIQUE (block_number, block_hash)
);
-- +goose Down
DROP TABLE public.header_cids;