2016-01-06 21:26:29 -07:00
|
|
|
/* Copyright 2014-2016 OpenMarket Ltd
|
2015-03-04 06:34:38 -07: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 presence(
|
2015-04-28 05:41:33 -06:00
|
|
|
user_id TEXT NOT NULL,
|
2015-03-19 07:42:39 -06:00
|
|
|
state VARCHAR(20),
|
2015-04-28 05:41:33 -06:00
|
|
|
status_msg TEXT,
|
2015-04-15 09:53:47 -06:00
|
|
|
mtime BIGINT -- miliseconds since last state change
|
2015-04-09 06:45:20 -06:00
|
|
|
);
|
2015-03-04 06:34:38 -07:00
|
|
|
|
|
|
|
-- For each of /my/ users which possibly-remote users are allowed to see their
|
|
|
|
-- presence state
|
|
|
|
CREATE TABLE IF NOT EXISTS presence_allow_inbound(
|
2015-04-28 05:41:33 -06:00
|
|
|
observed_user_id TEXT NOT NULL,
|
|
|
|
observer_user_id TEXT NOT NULL -- a UserID,
|
2015-04-09 06:45:20 -06:00
|
|
|
);
|
2015-03-04 06:34:38 -07:00
|
|
|
|
|
|
|
-- For each of /my/ users (watcher), which possibly-remote users are they
|
|
|
|
-- watching?
|
|
|
|
CREATE TABLE IF NOT EXISTS presence_list(
|
2015-04-28 05:41:33 -06:00
|
|
|
user_id TEXT NOT NULL,
|
|
|
|
observed_user_id TEXT NOT NULL, -- a UserID,
|
2015-04-10 03:05:44 -06:00
|
|
|
accepted BOOLEAN NOT NULL
|
2015-04-09 06:45:20 -06:00
|
|
|
);
|