diff options
author | Erik Johnston <erik@matrix.org> | 2015-01-28 16:16:53 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-01-28 16:16:53 +0000 |
commit | 0ef5bfd6a9eaaae14e199997658b3d0006abd854 (patch) | |
tree | 5c0a35bbe563e860673e3fb771306d48bce6392a /synapse/storage/schema/im.sql | |
parent | Make it the responsibility of the replication layer to check signature and ha... (diff) | |
download | synapse-0ef5bfd6a9eaaae14e199997658b3d0006abd854.tar.xz |
Start implementing auth conflict res
Diffstat (limited to 'synapse/storage/schema/im.sql')
-rw-r--r-- | synapse/storage/schema/im.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/schema/im.sql b/synapse/storage/schema/im.sql index bc7c6b6ed5..5866a387f6 100644 --- a/synapse/storage/schema/im.sql +++ b/synapse/storage/schema/im.sql @@ -128,5 +128,6 @@ CREATE TABLE IF NOT EXISTS rejections( event_id TEXT NOT NULL, reason TEXT NOT NULL, last_check TEXT NOT NULL, + root_rejected TEXT, CONSTRAINT ev_id UNIQUE (event_id) ON CONFLICT REPLACE ); |