ipfs-ethdb/postgres/db/migrations/00003_create_eth_key_preimages_table.sql

9 lines
246 B
MySQL
Raw Normal View History

2020-09-08 18:36:41 +00:00
-- +goose Up
CREATE TABLE IF NOT EXISTS eth.key_preimages (
eth_key BYTEA UNIQUE NOT NULL,
ipfs_key TEXT NOT NULL REFERENCES public.blocks (key) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
);
-- +goose Down
DROP TABLE eth.key_preimages;