anonymousland-synapse/synapse/storage/schema/delta/12/v12.sql

64 lines
1.8 KiB
MySQL
Raw Normal View History

/* Copyright 2015 OpenMarket 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.
*/
CREATE TABLE IF NOT EXISTS rejections(
2015-04-02 05:06:22 -04:00
event_id VARCHAR(150) NOT NULL,
reason VARCHAR(150) NOT NULL,
last_check VARCHAR(150) NOT NULL,
2015-03-18 07:18:49 -04:00
UNIQUE (event_id)
2015-04-09 08:45:20 -04:00
);
-- Push notification endpoints that users have configured
CREATE TABLE IF NOT EXISTS pushers (
2015-03-19 09:42:39 -04:00
id BIGINT PRIMARY KEY,
2015-04-02 05:06:22 -04:00
user_name VARCHAR(150) NOT NULL,
2015-03-18 07:18:49 -04:00
profile_tag VARCHAR(32) NOT NULL,
kind VARCHAR(8) NOT NULL,
app_id VARCHAR(64) NOT NULL,
app_display_name VARCHAR(64) NOT NULL,
device_display_name VARCHAR(128) NOT NULL,
pushkey VARBINARY(512) NOT NULL,
ts BIGINT NOT NULL,
2015-03-18 07:18:49 -04:00
lang VARCHAR(8),
data BLOB,
last_token TEXT,
last_success BIGINT,
failing_since BIGINT,
UNIQUE (app_id, pushkey)
2015-04-09 08:45:20 -04:00
);
2015-01-22 12:38:53 -05:00
CREATE TABLE IF NOT EXISTS push_rules (
2015-03-19 09:42:39 -04:00
id BIGINT PRIMARY KEY,
2015-04-02 05:06:22 -04:00
user_name VARCHAR(150) NOT NULL,
rule_id VARCHAR(150) NOT NULL,
2015-01-22 12:38:53 -05:00
priority_class TINYINT NOT NULL,
priority INTEGER NOT NULL DEFAULT 0,
2015-04-02 05:06:22 -04:00
conditions VARCHAR(150) NOT NULL,
actions VARCHAR(150) NOT NULL,
2015-01-22 12:38:53 -05:00
UNIQUE(user_name, rule_id)
2015-04-09 08:45:20 -04:00
);
2015-01-22 12:38:53 -05:00
CREATE INDEX IF NOT EXISTS push_rules_user_name on push_rules (user_name);
2015-02-06 09:38:04 -05:00
CREATE TABLE IF NOT EXISTS user_filters(
2015-04-02 05:06:22 -04:00
user_id VARCHAR(150),
2015-03-19 09:42:39 -04:00
filter_id BIGINT,
2015-03-18 07:18:49 -04:00
filter_json BLOB
2015-04-09 08:45:20 -04:00
);
2015-02-06 09:38:04 -05:00
CREATE INDEX IF NOT EXISTS user_filters_by_user_id_filter_id ON user_filters(
2015-03-18 07:18:49 -04:00
user_id, filter_id
2015-03-20 06:55:31 -04:00
);