56ce8bdb41
- Raw field we can reference by FK for related data - Enables replay for unwatched or mistransformed diffs
14 lines
350 B
SQL
14 lines
350 B
SQL
-- +goose Up
|
|
CREATE TABLE public.storage_diff
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
block_height BIGINT,
|
|
block_hash BYTEA,
|
|
hashed_address BYTEA,
|
|
storage_key BYTEA,
|
|
storage_value BYTEA,
|
|
UNIQUE (block_height, block_hash, hashed_address, storage_key, storage_value)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.storage_diff; |