ipld-eth-server/db/migrations/00001_create_blocks_table.sql
2019-02-26 00:52:54 -06:00

10 lines
110 B
SQL

-- +goose Up
CREATE TABLE public.blocks
(
block_number BIGINT
);
-- +goose Down
DROP TABLE public.blocks;