Add a deletions table

This commit is contained in:
Erik Johnston 2014-09-22 13:42:52 +01:00
parent e68dc04900
commit 231afe464a

View file

@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS deletions (
event_id TEXT NOT NULL,
deletes TEXT NOT NULL,
CONSTRAINT ev_uniq UNIQUE (event_id)
);