gpt4 book ai didi

laravel - 如何将唯一约束添加到 laravel 中现有的 foreignId 列?

转载 作者:行者123 更新时间:2023-12-05 01:59:02 26 4
gpt4 key购买 nike

我在数据库中有一个包含数据的现有表,我想向其中的 customer_id 列添加唯一约束。

我尝试执行 $table->foreignId('customer_id)->unique()->change()。但这似乎不起作用。这同样适用于任何非外部字段,如字符串和整数。

错误:

SQLSTATE[42S21]: Column already exists: 1060 Duplicate column name 'customer_id' (SQL: alter table `partner_preferences` add `customer_id` bigint unsigned not  

空)

最佳答案

foreignId()本质上是创建一个新列,在您的情况下该列已经存在。

The foreignId method is an alias of the unsignedBigInteger method:

laravel - difference between foreignId() and unsignedBigInteger()

请试试这个:

Unique constraint

    public function up()
{
// Change the 'table name' according to your needs.
Schema::table("employees", function (Blueprint $table) {

$table->unique('customer_id');
});
}

警告:确保您应用此约束的列实际上唯一。 (必须具有唯一数据。)

否则,将抛出错误(SQLSTATE[23000]:违反完整性约束:1062 Duplicate entry '1' for key 'XXXX_customer_id_unique')。

关于laravel - 如何将唯一约束添加到 laravel 中现有的 foreignId 列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68087622/

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