0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelでphp artisan migrateでエラー「1071 Specified key was too long; max key length is 767 bytes」

Last updated at Posted at 2023-04-17

環境

  • さくらVPSサーバー CentOS7
  • データベース MariaDB 5.5.68
  • Laravel 10.4.1
  • PHP 8.2.4

事象

php artisan migrate
1071 Specified key was too long; max key length is 767 bytes
エラー発生。

Laravelルートの app/Providers/AppServiceProvider.php

\Illuminate\Support\Facades\Schema::defaultStringLength(191);
の1行追加で解決。

# vi app/Providers/AppServiceProvider.php
public function boot()
{
    \Illuminate\Support\Facades\Schema::defaultStringLength(191);
}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?