ipfs-ethdb/postgres/db/migrations/00007_create_eth_ancient_receipts_table.sql
2020-09-14 10:15:39 -05:00

8 lines
179 B
SQL

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