1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00

Move threads column to the

Put column after CPU, not at the end.
This commit is contained in:
AreYouScared 2020-04-11 23:26:23 -04:00 committed by GitHub
parent 3d224993cd
commit 01142d9a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ class AddThreadsColumnToServersTable extends Migration
public function up() public function up()
{ {
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
$table->string('threads')->nullable(); $table->string('threads')->nullable()->after('cpu');
}); });
} }