ipfs-ethdb/postgres/db/migrations/00008_create_eth_ancient_tds_table.sql

8 lines
163 B
MySQL
Raw Normal View History

2020-09-14 13:51:48 +00:00
-- +goose Up
CREATE TABLE IF NOT EXISTS eth.ancient_tds (
block_number BIGINT UNIQUE NOT NULL,
td BYTEA NOT NULL
);
-- +goose Down
DROP TABLE eth.ancient_tds;