gpt4 book ai didi

php - "Unknown database type json requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it."运行 php artisan migrate 命令时

转载 作者:行者123 更新时间:2023-12-04 22:28:01 27 4
gpt4 key购买 nike

当我运行时:

php artisan migrate

并希望将字符串字段修改为文本字段,如下所示:
//the old field that i want to modify in migration file
$table->string('description')->nullable();

//and the new text field
$table->text('description')->change();

我收到以下错误:

Unknown database type json requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it.

最佳答案

试试这个解决方案可能对你有用,

public function __construct()
{
DB::getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('json', 'text');
}

有关此问题的进一步阅读,请查看 Issue #15772在 Laravel 仓库

关于php - "Unknown database type json requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it."运行 php artisan migrate 命令时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48256476/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com