ipld-eth-server/db/migrations/20190219134901_create_queued_storage.sql

13 lines
254 B
MySQL
Raw Normal View History

-- +goose Up
CREATE TABLE public.queued_storage (
id SERIAL PRIMARY KEY,
block_height BIGINT,
block_hash BYTEA,
contract BYTEA,
storage_key BYTEA,
storage_value BYTEA
);
-- +goose Down
DROP TABLE public.queued_storage;