mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-08 01:14:29 +01:00
Fix too long key error during migration for some MySQL setup
This commit is contained in:
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 @@ public function register()
|
||||
public function boot()
|
||||
{
|
||||
Blade::withoutComponentTags();
|
||||
Schema::defaultStringLength(191);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user