Move threads column to the
Put column after CPU, not at the end.
This commit is contained in:
parent
3d224993cd
commit
01142d9a25
|
@ -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');
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue