From d7d166d98954243c0ad30d7aa7604f73ba796ea6 Mon Sep 17 00:00:00 2001 From: liquidjoo Date: Thu, 30 May 2019 14:20:53 +0900 Subject: [PATCH] =?UTF-8?q?auth=20schema=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- authorization-server/src/main/resources/schema.sql | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/authorization-server/src/main/resources/schema.sql b/authorization-server/src/main/resources/schema.sql index b486d6d..cebc4da 100644 --- a/authorization-server/src/main/resources/schema.sql +++ b/authorization-server/src/main/resources/schema.sql @@ -1,4 +1,4 @@ - +use uneed_oauth; -- used in tests that use Mysql Local create table oauth_client_details ( client_id VARCHAR(255) PRIMARY KEY, @@ -7,8 +7,6 @@ create table oauth_client_details ( scope VARCHAR(255), authorized_grant_types VARCHAR(255), web_server_redirect_uri VARCHAR(255), - logout_uri VARCHAR(255), - base_uri VARCHAR(255), authorities VARCHAR(255), access_token_validity INTEGER, refresh_token_validity INTEGER,