mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
Add SQL as router RAM backend
This commit is contained in:
parent
5b6d042de2
commit
117f31125d
8 changed files with 247 additions and 8 deletions
11
sql/lite.sql
11
sql/lite.sql
|
@ -319,3 +319,14 @@ CREATE TABLE oauth_token (
|
|||
scope text NOT NULL,
|
||||
expire bigint NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE route (
|
||||
domain text NOT NULL,
|
||||
server_host text NOT NULL,
|
||||
node text NOT NULL,
|
||||
pid text NOT NULL,
|
||||
local_hint text NOT NULL
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX i_route ON route(domain, server_host, node, pid);
|
||||
CREATE INDEX i_route_domain ON route(domain);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue