From 2178e81d893ae14f1b97ef95dc6badd0cea18070 Mon Sep 17 00:00:00 2001 From: hgc Date: Sat, 22 Feb 2025 12:16:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=9F=90=E4=B8=AA=E4=B8=BB?= =?UTF-8?q?=E4=BD=93=E9=83=A8=E5=B9=BF=E5=91=8A=E8=B4=A6=E5=8F=B7=20?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/GoogleOAuthService.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/service/GoogleOAuthService.php b/app/service/GoogleOAuthService.php index c7b7b57..5ebe3a0 100644 --- a/app/service/GoogleOAuthService.php +++ b/app/service/GoogleOAuthService.php @@ -222,10 +222,14 @@ class GoogleOAuthService ON CONFLICT (platform,merchant_id,account_id) DO UPDATE SET user_id = EXCLUDED.user_id, + platform_user_id = EXCLUDED.platform_user_id, + platform_user_name = EXCLUDED.platform_user_name, account_name = EXCLUDED.account_name, access_token = EXCLUDED.access_token, refresh_token = EXCLUDED.refresh_token, is_unbind = EXCLUDED.is_unbind, + is_del = 'f', + ext_info = EXCLUDED.ext_info, currency = EXCLUDED.currency, updated_at = CURRENT_TIMESTAMP";