postgres table to hold ipfs data in same database as vulcanizedb data;

shared SeedNodeTransformer interface
This commit is contained in:
Ian Norden
2019-12-02 13:24:54 -06:00
parent 230e782e6c
commit 1235ec1f97
4 changed files with 55 additions and 1 deletions
@@ -0,0 +1,8 @@
-- +goose Up
CREATE TABLE public.blocks (
key TEXT UNIQUE NOT NULL,
data BYTEA NOT NULL
);
-- +goose Down
DROP TABLE public.blocks;