softDeletes(); $table->string('user_role',25)->default('user')->nullable(false); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { // $table->dropColumn('user_role'); $table->dropSoftDeletes(); }); } }