The issue was solved by the following way -
Add the following code in AppServiceProvider.php under App/Providers folder and don't forget to import schema class
Laravel5_root/app/Providers/AppServiceProvider.php
The code block
use Illuminate\Support\Facades\Schema;
function boot()
{
Schema::defaultStringLength(191); //Solved by increasing StringLength
}