Answers for "syntax error or access violation: 1071 la clé est trop longue. longueur maximale: 1000 (sql: alter table `users` add unique `users_email_unique`(`email`))"

PHP
17

Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))

use IlluminateSupportFacadesSchema;

public function boot()
{
    Schema::defaultStringLength(191);
}
Posted by: Guest on April-29-2020
3

Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))

use IlluminateSupportFacadesSchema;

public function boot()
{
    Schema::defaultStringLength(191);
}
Posted by: Guest on June-21-2020

Code answers related to "syntax error or access violation: 1071 la clé est trop longue. longueur maximale: 1000 (sql: alter table `users` add unique `users_email_unique`(`email`))"

Browse Popular Code Answers by Language