diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-04-08 17:10:55 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-04-09 16:46:04 +0100 |
commit | 747aa9f8cad92ffcda51b2aa07987c87f4353649 (patch) | |
tree | ae8f2fb18b70f968534e94d6bbdaa132e0211736 /synapse/storage/schema | |
parent | 0.99.3 (diff) | |
download | synapse-747aa9f8cad92ffcda51b2aa07987c87f4353649.tar.xz |
Add account expiration feature
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/54/account_validity.sql | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/54/account_validity.sql b/synapse/storage/schema/delta/54/account_validity.sql new file mode 100644 index 0000000000..57249262d7 --- /dev/null +++ b/synapse/storage/schema/delta/54/account_validity.sql @@ -0,0 +1,20 @@ +/* Copyright 2019 New Vector Ltd + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +-- Track what users are in public rooms. +CREATE TABLE IF NOT EXISTS account_validity ( + user_id TEXT PRIMARY KEY, + expiration_ts_ms BIGINT NOT NULL +); |