diff options
author | Paweł Chmielowski <pchmielowski@process-one.net> | 2020-01-31 16:06:27 +0100 |
---|---|---|
committer | Paweł Chmielowski <pchmielowski@process-one.net> | 2020-01-31 16:06:27 +0100 |
commit | 87ea71c3c9bfda4d68deb4b9efde5f44b4239c87 (patch) | |
tree | 14e97858739e75f7739655695311d2fb37cab3ea | |
parent | Optimize sql queries in pubsub select_affiliation_subscriptions (diff) |
Add missing oauth_client table declaration in lite.new.sql
-rw-r--r-- | sql/lite.new.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/lite.new.sql b/sql/lite.new.sql index f706e3976..816b7ebae 100644 --- a/sql/lite.new.sql +++ b/sql/lite.new.sql @@ -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, |