summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-29 15:33:27 +0100
committerErik Johnston <erik@matrix.org>2015-04-29 15:33:27 +0100
commitc8ed9bd278f2bd9354611944c10acb621d7ede51 (patch)
treed60cc197062731aaa53e2a74f7797117fe6e291f /synapse/storage
parentFix whitespace (diff)
downloadsynapse-c8ed9bd278f2bd9354611944c10acb621d7ede51.tar.xz
pushers table requires an access_token
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/schema/full_schemas/16/push.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/schema/full_schemas/16/push.sql b/synapse/storage/schema/full_schemas/16/push.sql

index db6e05cbdf..9387f920f0 100644 --- a/synapse/storage/schema/full_schemas/16/push.sql +++ b/synapse/storage/schema/full_schemas/16/push.sql
@@ -24,6 +24,7 @@ CREATE TABLE IF NOT EXISTS rejections( CREATE TABLE IF NOT EXISTS pushers ( id BIGINT PRIMARY KEY, user_name TEXT NOT NULL, + access_token BIGINT DEFAULT NULL, profile_tag VARCHAR(32) NOT NULL, kind VARCHAR(8) NOT NULL, app_id VARCHAR(64) NOT NULL,