ipfs-ethdb/postgres/db/migrations/00003_create_eth_key_preimages_table.sql
2020-09-08 14:15:35 -05:00

9 lines
246 B
SQL

-- +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;