aboutsummaryrefslogtreecommitdiff
path: root/sql/lite.sql
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2019-10-03 06:18:07 +0300
committerAlexey Shchepin <alexey@process-one.net>2019-10-03 06:18:48 +0300
commit5d549dca96c643345ba92e67504e67eb1b6b0681 (patch)
tree8228edfd0595643c869420d1506e76ebf5c45146 /sql/lite.sql
parentUpdate Guide links in WebAdmin to website, as local file isn't included (diff)
Check redirect_uri for OAUTH implicit grant
Diffstat (limited to 'sql/lite.sql')
-rw-r--r--sql/lite.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/lite.sql b/sql/lite.sql
index c77922c20..0b6bb12c1 100644
--- a/sql/lite.sql
+++ b/sql/lite.sql
@@ -339,8 +339,8 @@ CREATE TABLE oauth_token (
);
CREATE TABLE oauth_client (
- client text PRIMARY KEY,
- secret text NOT NULL,
+ client_id text PRIMARY KEY,
+ client_name text NOT NULL,
grant_type text NOT NULL,
options text NOT NULL
);