ipld-eth-server/db/migrations/00032_create_storage_cids_table.sql
2019-12-02 13:24:46 -06:00

11 lines
347 B
SQL

-- +goose Up
CREATE TABLE public.storage_cids (
id SERIAL PRIMARY KEY,
state_id INTEGER NOT NULL REFERENCES state_cids (id) ON DELETE CASCADE,
storage_key VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
UNIQUE (state_id, storage_key)
);
-- +goose Down
DROP TABLE public.storage_cids;