TCVis/app/Providers/AppServiceProvider.php

31 lines
477 B
PHP
Raw Normal View History

2018-12-21 12:45:08 +00:00
<?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);
//
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}