mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 17:59:31 +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
|
@ -335,3 +335,14 @@ CREATE TABLE oauth_token (
|
|||
scope text NOT NULL,
|
||||
expire bigint NOT NULL
|
||||
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
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
|
||||
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
CREATE UNIQUE INDEX i_route ON route(domain(75), server_host(75), node(75), pid(75));
|
||||
CREATE INDEX i_route_domain ON route(domain(75));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue