diff options
Diffstat (limited to 'sql/lite.new.sql')
-rw-r--r-- | sql/lite.new.sql | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sql/lite.new.sql b/sql/lite.new.sql index 7264e58cb..816b7ebae 100644 --- a/sql/lite.new.sql +++ b/sql/lite.new.sql @@ -1,5 +1,5 @@ -- --- ejabberd, Copyright (C) 2002-2019 ProcessOne +-- ejabberd, Copyright (C) 2002-2020 ProcessOne -- -- This program is free software; you can redistribute it and/or -- modify it under the terms of the GNU General Public License as @@ -368,6 +368,13 @@ CREATE TABLE oauth_token ( 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 ( domain text NOT NULL, server_host text NOT NULL, |