ipld-eth-server/db/migrations/00031_create_state_cids_table.sql

12 lines
415 B
MySQL
Raw Normal View History

2019-04-15 16:30:41 +00:00
-- +goose Up
CREATE TABLE public.state_cids (
id SERIAL PRIMARY KEY,
header_id INTEGER NOT NULL REFERENCES header_cids (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
state_key VARCHAR(66) NOT NULL,
leaf BOOLEAN NOT NULL,
2019-04-15 16:30:41 +00:00
cid TEXT NOT NULL,
UNIQUE (header_id, state_key)
2019-04-15 16:30:41 +00:00
);
-- +goose Down
DROP TABLE public.state_cids;