Merge pull request #1912 from Sir3lit/patch-1

Move threads column to the
This commit is contained in:
Dane Everitt 2020-04-12 10:12:19 -07:00 committed by GitHub
commit fc2a6ec8a8
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()
{
Schema::table('servers', function (Blueprint $table) {
$table->string('threads')->nullable();
$table->string('threads')->nullable()->after('cpu');
});
}