mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 17:59:31 +02:00
Add missing oauth_client table declaration in lite.new.sql
This commit is contained in:
parent
fdb7e3e3fa
commit
87ea71c3c9
1 changed files with 7 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue