mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Add missing oauth_client table declaration in lite.new.sql
This commit is contained in:
parent
fdb7e3e3fa
commit
87ea71c3c9
@ -368,6 +368,13 @@ CREATE TABLE oauth_token (
|
|||||||
expire bigint NOT NULL
|
expire bigint NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE oauth_client (
|
||||||
|
client_id text PRIMARY KEY,
|
||||||
|
client_name text NOT NULL,
|
||||||
|
grant_type text NOT NULL,
|
||||||
|
options text NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE route (
|
CREATE TABLE route (
|
||||||
domain text NOT NULL,
|
domain text NOT NULL,
|
||||||
server_host text NOT NULL,
|
server_host text NOT NULL,
|
||||||
|
Loading…
Reference in New Issue
Block a user