ipld-eth-server/db/migrations/00015_create_eth_queued_data_table.sql
2020-05-29 22:02:47 -05:00

9 lines
168 B
SQL

-- +goose Up
CREATE TABLE eth.queue_data (
id SERIAL PRIMARY KEY,
data BYTEA NOT NULL,
height BIGINT UNIQUE NOT NULL
);
-- +goose Down
DROP TABLE eth.queue_data;