安装Laravel Voyager软件包时迁移错误

问题描述 投票:2回答:3

我有全新安装的Laravel 5.5,但是当我尝试安装Voyager管理面板时出现此错误:

  [Illuminate\Database\QueryException]
  SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `translations` add unique `translati
ons_table_name_column_name_foreign_key_locale_unique`(`table_name`,    `column_name`, `foreign_key`, `locale`))

配置

PHP版本:7.0.10 MYSQL版本:5.7.14

代码更新

我想我找到了相关的代码:

        Schema::create('translations', function (Blueprint $table) {
        $table->increments('id');

        $table->string('table_name');
        $table->string('column_name');
        $table->integer('foreign_key')->unsigned();
        $table->string('locale');

        $table->text('value');

        $table->unique(['table_name', 'column_name', 'foreign_key', 'locale']); // SOURCE OF THE ERROR ?
    });
laravel laravel-5 migration
3个回答
3
投票

您需要更新“mysql”的“config / database.php”。

'engine'=> null

'engine'=>'InnoDB ROW_FORMAT = DYNAMIC',

还更新“app / Providers / AppServiceProvider.php”

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Schema;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        // Specified key was too long error, Laravel News post:
        Schema::defaultStringLength(191);
    }

    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}

并在项目文件夹中运行这些命令。

php artisan cache:清楚

php artisan配置:清除

php artisan voyager:install --with-dummy


0
投票

索引的总长度太长。

添加唯一索引的列不应该像VARCHAR列那样长,因为索引将非常庞大且效率低下。


0
投票

这是一个已知的issue

如果您不使用Voyager的多语言功能,只需取消注释*******************_create_translations_table中的行

//  $table->unique(['table_name', 'column_name', 'foreign_key', 'locale']);

或尝试将MySql数据库更新为7.x.

© www.soinside.com 2019 - 2024. All rights reserved.