From e175f4fda384521f202be000457fdf9ddeca7c68 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Tue, 25 Jan 2022 10:59:00 -0500 Subject: [PATCH] Revert "Increase size for attributes column" This reverts commit 14cb58df2b334126d5ee0c69e4ddfb81edaa5011. --- .../oauth2/server/authorization/oauth2-authorization-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2-authorization-server/src/main/resources/org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql b/oauth2-authorization-server/src/main/resources/org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql index 916db18a..96990663 100644 --- a/oauth2-authorization-server/src/main/resources/org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql +++ b/oauth2-authorization-server/src/main/resources/org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql @@ -3,7 +3,7 @@ CREATE TABLE oauth2_authorization ( registered_client_id varchar(100) NOT NULL, principal_name varchar(200) NOT NULL, authorization_grant_type varchar(100) NOT NULL, - attributes varchar(15000) DEFAULT NULL, + attributes varchar(4000) DEFAULT NULL, state varchar(500) DEFAULT NULL, authorization_code_value blob DEFAULT NULL, authorization_code_issued_at timestamp DEFAULT NULL,