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

View File

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