ipld-eth-server/db/migrations/00009_create_ipfs_blocks_table.sql
2020-05-29 22:02:47 -05:00

9 lines
151 B
SQL

-- +goose Up
CREATE TABLE IF NOT EXISTS public.blocks (
key TEXT UNIQUE NOT NULL,
data BYTEA NOT NULL
);
-- +goose Down
DROP TABLE public.blocks;