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