This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/app/Providers/AppServiceProvider.php

25 lines
383 B
PHP
Raw Normal View History

2019-04-24 18:46:41 +00:00
<?php
namespace App\Providers;
2019-07-17 09:31:30 +00:00
use Illuminate\Support\Facades\Schema;
2019-04-24 18:46:41 +00:00
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
2019-07-17 09:31:30 +00:00
public function boot(){
Schema::defaultStringLength(191);
}
2019-04-24 18:46:41 +00:00
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}