update to work with updated state diffing code

This commit is contained in:
Ian Norden
2019-12-02 13:24:50 -06:00
parent 3108957e5f
commit 671a324294
33 changed files with 1328 additions and 354 deletions
@@ -3,6 +3,7 @@ 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,
leaf BOOLEAN NOT NULL,
cid TEXT NOT NULL,
UNIQUE (state_id, storage_key)
);