diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-05 10:08:12 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-05 10:08:12 +0000 |
commit | 27091f146a0ebdbfe1ae7c5cd30de51515cfbebc (patch) | |
tree | f32ff280c60ccaf599c2ef053dd5c464e53e3854 /synapse/storage/schema | |
parent | Impl push_bulk function (diff) | |
download | synapse-27091f146a0ebdbfe1ae7c5cd30de51515cfbebc.tar.xz |
Add hs_token column and generate a different token f.e application service.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/application_services.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/schema/application_services.sql b/synapse/storage/schema/application_services.sql index 6d245fc807..03b5a10c8a 100644 --- a/synapse/storage/schema/application_services.sql +++ b/synapse/storage/schema/application_services.sql @@ -17,6 +17,7 @@ CREATE TABLE IF NOT EXISTS application_services( id INTEGER PRIMARY KEY AUTOINCREMENT, url TEXT, token TEXT, + hs_token TEXT, UNIQUE(token) ON CONFLICT ROLLBACK ); |