2015-03-04 14:34:38 +01:00
|
|
|
/* Copyright 2014, 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 users(
|
2015-04-02 11:06:22 +02:00
|
|
|
name VARCHAR(150),
|
|
|
|
password_hash VARCHAR(150),
|
2015-03-19 14:42:39 +01:00
|
|
|
creation_ts BIGINT,
|
2015-03-04 14:34:38 +01:00
|
|
|
admin BOOL DEFAULT 0 NOT NULL,
|
2015-03-18 12:18:49 +01:00
|
|
|
UNIQUE(name)
|
2015-04-09 14:45:20 +02:00
|
|
|
);
|
2015-03-04 14:34:38 +01:00
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS access_tokens(
|
2015-04-01 15:12:33 +02:00
|
|
|
id BIGINT PRIMARY KEY,
|
2015-04-02 11:06:22 +02:00
|
|
|
user_id VARCHAR(150) NOT NULL,
|
|
|
|
device_id VARCHAR(150),
|
|
|
|
token VARCHAR(150) NOT NULL,
|
2015-03-19 14:42:39 +01:00
|
|
|
last_used BIGINT,
|
2015-03-18 12:18:49 +01:00
|
|
|
UNIQUE(token)
|
2015-04-09 14:45:20 +02:00
|
|
|
);
|
2015-03-04 14:34:38 +01:00
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS user_ips (
|
2015-04-02 11:06:22 +02:00
|
|
|
user VARCHAR(150) NOT NULL,
|
|
|
|
access_token VARCHAR(150) NOT NULL,
|
|
|
|
device_id VARCHAR(150),
|
|
|
|
ip VARCHAR(150) NOT NULL,
|
|
|
|
user_agent VARCHAR(150) NOT NULL,
|
2015-04-07 13:08:35 +02:00
|
|
|
last_seen BIGINT NOT NULL
|
2015-04-09 14:45:20 +02:00
|
|
|
);
|
2015-03-04 14:34:38 +01:00
|
|
|
|
|
|
|
CREATE INDEX IF NOT EXISTS user_ips_user ON user_ips(user);
|
2015-04-07 13:08:35 +02:00
|
|
|
CREATE INDEX IF NOT EXISTS user_ips_user_ip ON user_ips(user, access_token, ip);
|