如何将唯一约束添加到 laravel 中现有的 foreignId 列?
How to add unique constraint to an existing foreignId column in laravel?
我在数据库中有一个现有的 table 数据,我想向其中的 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:
请试试这个:
public function up()
{
// Change the 'table name' according to your needs.
Schema::table("employees", function (Blueprint $table) {
$table->unique('customer_id');
});
}
警告:确保您应用此约束的列实际上是唯一。 (必须具有唯一数据。)
否则会报错(SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1' for key 'XXXX_customer_id_unique'
)。
我在数据库中有一个现有的 table 数据,我想向其中的 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 theunsignedBigInteger
method:
请试试这个:
public function up()
{
// Change the 'table name' according to your needs.
Schema::table("employees", function (Blueprint $table) {
$table->unique('customer_id');
});
}
警告:确保您应用此约束的列实际上是唯一。 (必须具有唯一数据。)
否则会报错(SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1' for key 'XXXX_customer_id_unique'
)。