From 18079dea929aa0f9706ffcad76755d06d9efb128 Mon Sep 17 00:00:00 2001 From: ste87 Date: Sat, 14 Mar 2026 15:04:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Speed/2026=5F03=5F14=5F062?= =?UTF-8?q?036=5Fadd=5Frate=5Flimit=5Fto=5Fservers=5Ftable.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php b/Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php index 01f0a97..d16519f 100644 --- a/Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php +++ b/Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { Schema::table('servers', function (Blueprint $table) { - // + $table->float('rate_limit')->nullable()->default(null)->after('bandwidth_limit'); }); } @@ -22,7 +22,7 @@ return new class extends Migration public function down(): void { Schema::table('servers', function (Blueprint $table) { - // + $table->dropColumn('rate_limit'); }); } -}; +}; \ No newline at end of file