ipfs-ethdb/postgres/db/migrations/00005_create_ancient_hashes_table.sql
2020-09-14 08:51:48 -05:00

8 lines
171 B
SQL

-- +goose Up
CREATE TABLE IF NOT EXISTS eth.ancient_hashes (
block_number BIGINT UNIQUE NOT NULL,
hash BYTEA NOT NULL
);
-- +goose Down
DROP TABLE eth.ancient_hashes;