Files
shareit/app/Providers/AppServiceProvider.php
2021-05-20 20:37:35 -03:00

31 lines
520 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191); //Solved by increasing StringLength
//
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}