text('middle_name')->nullable()->after('first_name');
$table->text('gender')->nullable()->after('password');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('middle_name');
$table->dropColumn('gender');
});
}
}