forked from cerc-io/ipld-eth-server
56ce8bdb41
- Raw field we can reference by FK for related data - Enables replay for unwatched or mistransformed diffs
9 lines
151 B
SQL
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;
|