mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-04-01 19:36:07 +02: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;
|
namespace App\Providers;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Blade;
|
use Illuminate\Support\Facades\Blade;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
|
|
||||||
@ -26,5 +27,6 @@ public function register()
|
|||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
Blade::withoutComponentTags();
|
Blade::withoutComponentTags();
|
||||||
|
Schema::defaultStringLength(191);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user