表中的更改列在postgres中具有枚举类型

问题描述 投票:1回答:1

这是我的代码:

public function up()
{
    Schema::table('organization_user', function (Blueprint $table) {
        $table->renameColumn('company_id', 'organization_id');
    });
}

我想重命名表中的列。并且在此表中有一列是枚举类型。但错误:未知数据库类型company_roles请求,Doctrine \ DBAL \ Platforms \ PostgreSQL100Platform可能 不支持它。我用laravel 5.6

php laravel postgresql doctrine laravel-migrations
1个回答
1
投票

此问题可能与Laravel文档中提到的内容有关“您无法重命名具有'枚举'类型的表中的列”。见:enter image description here

我担心这与Laravel使用的Doctrine / DBal的5年问题相同:[Bug] Schema builder - renameColumn fails on table with enum columns但其中一个解决方法也在同一个问题报告DB Query上。为了参考,我会把它放在这里:

DB::statement("ALTER TABLE table_name MODIFY COLUMN column_name ENUM('Here','is','choices')");

在这种情况下,您需要在迁移类文件的down()函数中提供正确的语句,以恢复表的状态。

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