I install laravel 5.5 and When I run php artisan migrate show me this error
[Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQ L: alter table
usersadd uniqueusers_email_unique(
And I add bellow code on AppServiceProvider.php
 public function boot()
{
     Schema::defaultStringLength(191); //Solved by increasing StringLength
}
And then show me this error
[Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1067 Invalid default value for 'created_at' (SQL: create table
password_resets(tokenvarchar(191) not null,created_attimestamp not null) de fault character set utf8mb4 collate utf8mb4_unicode_ci)
via Chebli Mohamed
 
Aucun commentaire:
Enregistrer un commentaire