From c7d7576c657a53a9e08ac7a33579ca6783ae6bb1 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 16 Oct 2025 16:06:47 +0300 Subject: [PATCH] Fix access toke expiration database column type --- app/plugins/CoreServer/config/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins/CoreServer/config/plugin.json b/app/plugins/CoreServer/config/plugin.json index 7bf87729f..39c89dc0d 100644 --- a/app/plugins/CoreServer/config/plugin.json +++ b/app/plugins/CoreServer/config/plugin.json @@ -62,7 +62,7 @@ "refresh_token": { "type": "text" }, "access_token": { "type": "text" }, "token_response": { "type": "text" }, - "access_token_exp": { "type": "boolean" } + "access_token_exp": { "type": "bigint"} }, "indexes": { "oauth2_servers_i1": { "columns": [ "server_id" ] }