diff options
author | Alexey Shchepin <alexey@process-one.net> | 2019-10-03 06:18:07 +0300 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2019-10-03 06:18:48 +0300 |
commit | 5d549dca96c643345ba92e67504e67eb1b6b0681 (patch) | |
tree | 8228edfd0595643c869420d1506e76ebf5c45146 /sql/mysql.new.sql | |
parent | Update Guide links in WebAdmin to website, as local file isn't included (diff) |
Check redirect_uri for OAUTH implicit grant
Diffstat (limited to '')
-rw-r--r-- | sql/mysql.new.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/mysql.new.sql b/sql/mysql.new.sql index b2f9acfd4..15843fc7d 100644 --- a/sql/mysql.new.sql +++ b/sql/mysql.new.sql @@ -384,6 +384,13 @@ CREATE TABLE oauth_token ( expire bigint NOT NULL ) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +CREATE TABLE oauth_client ( + client_id varchar(191) NOT NULL PRIMARY KEY, + client_name text NOT NULL, + grant_type text NOT NULL, + options text NOT NULL +) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; + CREATE TABLE route ( domain text NOT NULL, server_host varchar(191) NOT NULL, |