add file model

This commit is contained in:
j3d1 2019-11-28 04:52:53 +01:00
parent 53037d26af
commit acf701da70
10 changed files with 96 additions and 9 deletions

View file

@ -4,6 +4,8 @@ namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Schema;
class AppServiceProvider extends ServiceProvider
{
/**
@ -15,4 +17,9 @@ class AppServiceProvider extends ServiceProvider
{
//
}
public function boot()
{
Schema::defaultStringLength(191);
}
}