更新 Speed/2026_03_14_062036_add_rate_limit_to_servers_table.php

This commit is contained in:
ste87 2026-03-14 15:04:58 +08:00
parent d42b8e1255
commit 18079dea92

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('servers', function (Blueprint $table) { 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 public function down(): void
{ {
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
// $table->dropColumn('rate_limit');
}); });
} }
}; };