ipld-eth-server/db/migrations/00024_create_eth_queued_data_table.sql

9 lines
168 B
MySQL
Raw Normal View History

2020-02-23 23:14:29 +00:00
-- +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;