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

11 lines
345 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,
account_key VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
UNIQUE (header_id, account_key)
);
-- +goose Down
DROP TABLE public.state_cids;