0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-01 05:59:00 +02:00

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)
);