数据库
首页 > 数据库> > php – Laravel 5.4迁移ENUM在MySQL中失败

php – Laravel 5.4迁移ENUM在MySQL中失败

作者:互联网

当我尝试应用我的迁移时,我收到此错误:

[Doctrine\DBAL\DBALException]
Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it.

应用迁移,在数据库上创建枚举列,我得到错误,因此我无法执行nexts迁移,因为此迁移会抛出此错误.

在服务器中,我的MySQL版本为5.7.17

这是我的迁移代码:

class AddDocumentUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->string('document', 9)->unique();
            $table->enum('document_type', ['dni', 'nie', 'nif', 'cif']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->dropColumn('document');
            $table->dropColumn('document_type');
        });
    }
}

谢谢

标签:laravel-migrations,php,laravel-5,mysql
来源: https://codeday.me/bug/20190823/1701440.html