Files
salt-minv-graph/app/Providers/AppServiceProvider.php
Jaroslav Drzik e2f7d8b5c6 Git inicializacia
2019-11-15 11:03:55 +01:00

30 lines
466 B
PHP

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