2016-01-06 23:26:29 -05:00
|
|
|
/* Copyright 2015, 2016 OpenMarket Ltd
|
2015-01-22 10:50:17 -05:00
|
|
|
*
|
|
|
|
* 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-28 07:41:33 -04:00
|
|
|
event_id TEXT NOT NULL,
|
|
|
|
reason TEXT NOT NULL,
|
|
|
|
last_check TEXT NOT NULL,
|
2015-03-18 07:18:49 -04:00
|
|
|
UNIQUE (event_id)
|
2015-04-09 08:45:20 -04:00
|
|
|
);
|
2015-01-30 09:08:28 -05:00
|
|
|
|
2014-11-19 13:20:59 -05:00
|
|
|
-- Push notification endpoints that users have configured
|
|
|
|
CREATE TABLE IF NOT EXISTS pushers (
|
2015-04-10 06:16:09 -04:00
|
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
2015-04-28 07:41:33 -04:00
|
|
|
user_name TEXT 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,
|
2015-04-10 06:22:04 -04:00
|
|
|
ts BIGINT UNSIGNED NOT NULL,
|
2015-03-18 07:18:49 -04:00
|
|
|
lang VARCHAR(8),
|
2015-04-10 13:45:09 -04:00
|
|
|
data LONGBLOB,
|
2014-11-19 13:20:59 -05:00
|
|
|
last_token TEXT,
|
2015-04-10 06:22:04 -04:00
|
|
|
last_success BIGINT UNSIGNED,
|
|
|
|
failing_since BIGINT UNSIGNED,
|
2014-12-18 09:49:22 -05:00
|
|
|
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-04-10 06:16:09 -04:00
|
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
2015-04-28 07:41:33 -04:00
|
|
|
user_name TEXT NOT NULL,
|
|
|
|
rule_id TEXT NOT NULL,
|
2015-01-22 12:38:53 -05:00
|
|
|
priority_class TINYINT NOT NULL,
|
|
|
|
priority INTEGER NOT NULL DEFAULT 0,
|
2015-04-28 07:41:33 -04:00
|
|
|
conditions TEXT NOT NULL,
|
|
|
|
actions TEXT 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-28 07:41:33 -04:00
|
|
|
user_id TEXT,
|
2015-04-10 06:22:04 -04:00
|
|
|
filter_id BIGINT UNSIGNED,
|
2015-04-10 13:45:09 -04:00
|
|
|
filter_json LONGBLOB
|
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
|
|
|
);
|