ipld-eth-server/db/migrations/00001_create_blocks_table.sql

10 lines
110 B
SQL

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