- In your Laravel folder go to app - Providers - AppServiceProvider.php
- Add use Illuminate\Support\Facades\Schema; after use Illuminate\Support\ServiceProvider; If you don't do it you'll get next error: [Symfony\Component\Debug\Exception\FatalErrorException] Class 'App\Providers\Schema' not found
- Inside boot function add next line: Schema::defaultStringLength(191);
Find solution from laravel-news.com.