1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-07-13 02:45:05 +02:00

Fix too long key error during migration for some MySQL setup

This commit is contained in:
Bubka
2020-12-01 09:19:58 +01:00
parent 92be5976ff
commit e7156d0650

@ -3,6 +3,7 @@
namespace App\Providers;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
@ -26,5 +27,6 @@ class AppServiceProvider extends ServiceProvider
public function boot()
{
Blade::withoutComponentTags();
Schema::defaultStringLength(191);
}
}