1use Illuminate\Support\Facades\Schema;
2
3public function boot()
4{
5 Schema::defaultStringLength(191);
6}
7
1# AppServiceProvider.php
2
3use Illuminate\Support\Facades\Schema;
4
5public function boot()
6{
7 Schema::defaultStringLength(191);
8}
9
1In app\Providers\AppServiceProvider.php File
2
3// Add
4use Illuminate\Support\Facades\Schema;
5
6public function boot() {
7 // Add In boot function
8 Schema::defaultStringLength(191);
9}
10