Answers for "qlstate[42000]: 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`))"

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
2

SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes

use IlluminateSupportFacadesSchema;

/**
 * Bootstrap any application services.
 *
 * @return void
 */
public function boot()
{
    Schema::defaultStringLength(191);
}
Posted by: Guest on November-16-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 "qlstate[42000]: 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`))"

Browse Popular Code Answers by Language