staffmanager/app/Providers/AppServiceProvider.php

30 lines
473 B
PHP
Raw Normal View History

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