Skip to content

Commit fc2a6ec

Browse files
authored
Merge pull request pterodactyl#1912 from Sir3lit/patch-1
Move threads column to the
2 parents d6ac0c3 + 01142d9 commit fc2a6ec

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)