for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddRedirectFieldToRolesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
if (!Schema::hasColumn('roles', 'redirect')) {
Schema::table('roles', function (Blueprint $table) {
$table->string('redirect')->default('dashboard')->after('guard_name');
});
}
* Reverse the migrations.
public function down()
$table->dropColumn('redirect');