Skip to content

Commit 01142d9

Browse files
Move threads column to the
Put column after CPU, not at the end.
1 parent 3d22499 commit 01142d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2020_04_03_203624_add_threads_column_to_servers_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AddThreadsColumnToServersTable extends Migration
1414
public function up()
1515
{
1616
Schema::table('servers', function (Blueprint $table) {
17-
$table->string('threads')->nullable();
17+
$table->string('threads')->nullable()->after('cpu');
1818
});
1919
}
2020

0 commit comments

Comments
 (0)