2022-11-17 21:26:52 +01:00
|
|
|
CREATE TABLE users
|
|
|
|
(
|
|
|
|
user_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
|
|
|
|
username TEXT NULL DEFAULT NULL,
|
|
|
|
|
|
|
|
send_key TEXT NOT NULL,
|
2022-11-18 23:12:37 +01:00
|
|
|
read_key TEXT NOT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
admin_key TEXT NOT NULL,
|
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
timestamp_created INTEGER NOT NULL,
|
|
|
|
timestamp_lastread INTEGER NULL DEFAULT NULL,
|
|
|
|
timestamp_lastsent INTEGER NULL DEFAULT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
messages_sent INTEGER NOT NULL DEFAULT '0',
|
|
|
|
|
2022-11-19 15:13:47 +01:00
|
|
|
quota_used INTEGER NOT NULL DEFAULT '0',
|
|
|
|
quota_used_day TEXT NULL DEFAULT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
is_pro INTEGER CHECK(is_pro IN (0, 1)) NOT NULL DEFAULT 0,
|
2022-11-18 21:25:40 +01:00
|
|
|
pro_token TEXT NULL DEFAULT NULL
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
2022-11-18 21:25:40 +01:00
|
|
|
CREATE UNIQUE INDEX "idx_users_protoken" ON users (pro_token) WHERE pro_token IS NOT NULL;
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE clients
|
|
|
|
(
|
2022-11-18 21:25:40 +01:00
|
|
|
client_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
user_id INTEGER NOT NULL,
|
|
|
|
type TEXT CHECK(type IN ('ANDROID', 'IOS')) NOT NULL,
|
|
|
|
fcm_token TEXT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
timestamp_created INTEGER NOT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
agent_model TEXT NOT NULL,
|
|
|
|
agent_version TEXT NOT NULL
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
|
|
|
CREATE INDEX "idx_clients_userid" ON clients (user_id);
|
|
|
|
CREATE UNIQUE INDEX "idx_clients_fcmtoken" ON clients (fcm_token);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE channels
|
|
|
|
(
|
|
|
|
channel_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
|
|
|
|
owner_user_id INTEGER NOT NULL,
|
|
|
|
|
|
|
|
name TEXT NOT NULL,
|
|
|
|
|
|
|
|
subscribe_key TEXT NOT NULL,
|
|
|
|
send_key TEXT NOT NULL,
|
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
timestamp_created INTEGER NOT NULL,
|
2022-11-18 23:12:37 +01:00
|
|
|
timestamp_lastsent INTEGER NULL DEFAULT NULL,
|
|
|
|
|
|
|
|
messages_sent INTEGER NOT NULL DEFAULT '0'
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
|
|
|
CREATE UNIQUE INDEX "idx_channels_identity" ON channels (owner_user_id, name);
|
|
|
|
|
|
|
|
CREATE TABLE subscriptions
|
|
|
|
(
|
2022-11-18 23:12:37 +01:00
|
|
|
subscription_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
|
|
|
|
subscriber_user_id INTEGER NOT NULL,
|
|
|
|
channel_owner_user_id INTEGER NOT NULL,
|
|
|
|
channel_name TEXT NOT NULL,
|
2022-11-19 15:13:47 +01:00
|
|
|
channel_id INTEGER NOT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-19 15:13:47 +01:00
|
|
|
timestamp_created INTEGER NOT NULL,
|
|
|
|
|
|
|
|
confirmed INTEGER CHECK(confirmed IN (0, 1)) NOT NULL
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
|
|
|
CREATE UNIQUE INDEX "idx_subscriptions_ref" ON subscriptions (subscriber_user_id, channel_owner_user_id, channel_name);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE messages
|
|
|
|
(
|
|
|
|
scn_message_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
sender_user_id INTEGER NOT NULL,
|
2022-11-19 15:13:47 +01:00
|
|
|
owner_user_id INTEGER NOT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
channel_name TEXT NOT NULL,
|
|
|
|
channel_id INTEGER NOT NULL,
|
2022-11-29 11:07:15 +01:00
|
|
|
sender_ip TEXT NOT NULL,
|
|
|
|
sender_name TEXT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
timestamp_real INTEGER NOT NULL,
|
|
|
|
timestamp_client INTEGER NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
title TEXT NOT NULL,
|
|
|
|
content TEXT NULL,
|
|
|
|
priority INTEGER CHECK(priority IN (0, 1, 2)) NOT NULL,
|
2022-11-18 21:25:40 +01:00
|
|
|
usr_message_id TEXT NULL
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
2022-11-29 11:07:15 +01:00
|
|
|
CREATE INDEX "idx_messages_channel" ON messages (owner_user_id, channel_name);
|
|
|
|
CREATE UNIQUE INDEX "idx_messages_idempotency" ON messages (owner_user_id, usr_message_id);
|
|
|
|
CREATE INDEX "idx_messages_senderip" ON messages (sender_ip);
|
|
|
|
CREATE INDEX "idx_messages_sendername" ON messages (sender_name);
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
|
2022-12-07 22:10:46 +01:00
|
|
|
CREATE VIRTUAL TABLE messages_fts USING fts5
|
|
|
|
(
|
|
|
|
scn_message_id,
|
|
|
|
sender_user_id,
|
|
|
|
owner_user_id,
|
|
|
|
channel_name,
|
|
|
|
channel_id,
|
|
|
|
sender_ip,
|
|
|
|
sender_name,
|
|
|
|
timestamp_real,
|
|
|
|
timestamp_client,
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
priority,
|
|
|
|
usr_message_id,
|
|
|
|
|
|
|
|
tokenize = unicode61,
|
|
|
|
content = 'messages',
|
|
|
|
content_rowid = 'scn_message_id'
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TRIGGER articles_after_insert AFTER INSERT ON messages BEGIN
|
|
|
|
INSERT INTO messages_fts
|
|
|
|
(
|
|
|
|
rowid,
|
|
|
|
scn_message_id,
|
|
|
|
sender_user_id,
|
|
|
|
owner_user_id,
|
|
|
|
channel_name,
|
|
|
|
channel_id,
|
|
|
|
sender_ip,
|
|
|
|
sender_name,
|
|
|
|
timestamp_real,
|
|
|
|
timestamp_client,
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
priority,
|
|
|
|
usr_message_id
|
|
|
|
) VALUES (
|
|
|
|
new.scn_message_id,
|
|
|
|
new.scn_message_id,
|
|
|
|
new.sender_user_id,
|
|
|
|
new.owner_user_id,
|
|
|
|
new.channel_name,
|
|
|
|
new.channel_id,
|
|
|
|
new.sender_ip,
|
|
|
|
new.sender_name,
|
|
|
|
new.timestamp_real,
|
|
|
|
new.timestamp_client,
|
|
|
|
new.title,
|
|
|
|
new.content,
|
|
|
|
new.priority,
|
|
|
|
new.usr_message_id
|
|
|
|
);
|
|
|
|
END;
|
|
|
|
|
|
|
|
CREATE TRIGGER articles_fts_after_update AFTER UPDATE ON messages BEGIN
|
|
|
|
INSERT INTO messages_fts
|
|
|
|
(
|
|
|
|
messages_fts,
|
|
|
|
rowid,
|
|
|
|
scn_message_id,
|
|
|
|
sender_user_id,
|
|
|
|
owner_user_id,
|
|
|
|
channel_name,
|
|
|
|
channel_id,
|
|
|
|
sender_ip,
|
|
|
|
sender_name,
|
|
|
|
timestamp_real,
|
|
|
|
timestamp_client,
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
priority,
|
|
|
|
usr_message_id
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
'delete',
|
|
|
|
old.scn_message_id,
|
|
|
|
old.scn_message_id,
|
|
|
|
old.sender_user_id,
|
|
|
|
old.owner_user_id,
|
|
|
|
old.channel_name,
|
|
|
|
old.channel_id,
|
|
|
|
old.sender_ip,
|
|
|
|
old.sender_name,
|
|
|
|
old.timestamp_real,
|
|
|
|
old.timestamp_client,
|
|
|
|
old.title,
|
|
|
|
old.content,
|
|
|
|
old.priority,
|
|
|
|
old.usr_message_id
|
|
|
|
);
|
|
|
|
INSERT INTO messages_fts
|
|
|
|
(
|
|
|
|
rowid,
|
|
|
|
scn_message_id,
|
|
|
|
sender_user_id,
|
|
|
|
owner_user_id,
|
|
|
|
channel_name,
|
|
|
|
channel_id,
|
|
|
|
sender_ip,
|
|
|
|
sender_name,
|
|
|
|
timestamp_real,
|
|
|
|
timestamp_client,
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
priority,
|
|
|
|
usr_message_id
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
new.scn_message_id,
|
|
|
|
new.scn_message_id,
|
|
|
|
new.sender_user_id,
|
|
|
|
new.owner_user_id,
|
|
|
|
new.channel_name,
|
|
|
|
new.channel_id,
|
|
|
|
new.sender_ip,
|
|
|
|
new.sender_name,
|
|
|
|
new.timestamp_real,
|
|
|
|
new.timestamp_client,
|
|
|
|
new.title,
|
|
|
|
new.content,
|
|
|
|
new.priority,
|
|
|
|
new.usr_message_id
|
|
|
|
);
|
|
|
|
END;
|
|
|
|
|
|
|
|
CREATE TRIGGER articles_fts_after_delete AFTER DELETE ON messages BEGIN
|
|
|
|
INSERT INTO messages_fts
|
|
|
|
(
|
|
|
|
messages_fts,
|
|
|
|
rowid,
|
|
|
|
scn_message_id,
|
|
|
|
sender_user_id,
|
|
|
|
owner_user_id,
|
|
|
|
channel_name,
|
|
|
|
channel_id,
|
|
|
|
sender_ip,
|
|
|
|
sender_name,
|
|
|
|
timestamp_real,
|
|
|
|
timestamp_client,
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
priority,
|
|
|
|
usr_message_id
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
'delete',
|
|
|
|
old.scn_message_id,
|
|
|
|
old.scn_message_id,
|
|
|
|
old.sender_user_id,
|
|
|
|
old.owner_user_id,
|
|
|
|
old.channel_name,
|
|
|
|
old.channel_id,
|
|
|
|
old.sender_ip,
|
|
|
|
old.sender_name,
|
|
|
|
old.timestamp_real,
|
|
|
|
old.timestamp_client,
|
|
|
|
old.title,
|
|
|
|
old.content,
|
|
|
|
old.priority,
|
|
|
|
old.usr_message_id
|
|
|
|
);
|
|
|
|
END;
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-11-17 21:26:52 +01:00
|
|
|
CREATE TABLE deliveries
|
|
|
|
(
|
|
|
|
delivery_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
|
|
|
|
scn_message_id INTEGER NOT NULL,
|
|
|
|
receiver_user_id INTEGER NOT NULL,
|
|
|
|
receiver_client_id INTEGER NOT NULL,
|
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
timestamp_created INTEGER NOT NULL,
|
2022-11-20 03:06:08 +01:00
|
|
|
timestamp_finalized INTEGER NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
status TEXT CHECK(status IN ('RETRY','SUCCESS','FAILED')) NOT NULL,
|
|
|
|
retry_count INTEGER NOT NULL DEFAULT 0,
|
2022-11-18 21:25:40 +01:00
|
|
|
next_delivery INTEGER NULL DEFAULT NULL,
|
2022-11-17 21:26:52 +01:00
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
fcm_message_id TEXT NULL
|
2022-11-17 21:26:52 +01:00
|
|
|
);
|
|
|
|
CREATE INDEX "idx_deliveries_receiver" ON deliveries (scn_message_id, receiver_client_id);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE `meta`
|
|
|
|
(
|
|
|
|
meta_key TEXT NOT NULL,
|
|
|
|
value_int INTEGER NULL,
|
|
|
|
value_txt TEXT NULL,
|
|
|
|
value_real REAL NULL,
|
|
|
|
value_blob BLOB NULL,
|
|
|
|
|
|
|
|
PRIMARY KEY (meta_key)
|
|
|
|
);
|
2022-11-24 12:53:27 +01:00
|
|
|
|
|
|
|
|
2022-11-17 21:26:52 +01:00
|
|
|
INSERT INTO meta (meta_key, value_int) VALUES ('schema', 3)
|