From 46379afd18a06d0dabd7da0869732ee67dbd3651 Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 2 Dec 2025 22:57:55 -0800 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20=E6=B7=BB=E5=8A=A0=20admin-servi?= =?UTF-8?q?ce=20=E6=95=B0=E6=8D=AE=E5=BA=93=20rwa=5Fadmin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 init-databases.sh 中添加 rwa_admin 数据库 - 在 migrate 函数中添加 admin-service 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- backend/services/deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/services/deploy.sh b/backend/services/deploy.sh index ea1bd42d..c4614ee1 100644 --- a/backend/services/deploy.sh +++ b/backend/services/deploy.sh @@ -155,7 +155,7 @@ EOSQL } # Create all required databases -for db in rwa_identity rwa_wallet rwa_mpc rwa_backup rwa_planting rwa_referral rwa_reward rwa_leaderboard rwa_reporting rwa_authorization rwa_presence; do +for db in rwa_identity rwa_wallet rwa_mpc rwa_backup rwa_planting rwa_referral rwa_reward rwa_leaderboard rwa_reporting rwa_authorization rwa_admin rwa_presence; do create_database "$db" done @@ -338,6 +338,7 @@ migrate() { "leaderboard-service" "reporting-service" "authorization-service" + "admin-service" "presence-service" )