From 1e85571d5c13c4cbc3c4980f20663c3efa84d48a Mon Sep 17 00:00:00 2001 From: weizong song Date: Wed, 15 Oct 2025 01:44:06 +0800 Subject: [PATCH] up --- ...5_10_15_012803_update_alipay_account_add_app_private_key.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2025_10_15_012803_update_alipay_account_add_app_private_key.php b/database/migrations/2025_10_15_012803_update_alipay_account_add_app_private_key.php index 2e977d6..66ded65 100644 --- a/database/migrations/2025_10_15_012803_update_alipay_account_add_app_private_key.php +++ b/database/migrations/2025_10_15_012803_update_alipay_account_add_app_private_key.php @@ -14,7 +14,7 @@ class UpdateAlipayAccountAddAppPrivateKey extends Migration public function up() { Schema::table('alipay_account', function (Blueprint $table) { - $table->string('private_key', 5120)->nullable()->comment('应用私钥')->after('appid'); + $table->string('private_key', 2048)->nullable()->comment('应用私钥')->after('appid'); }); }