laravel 语法错误或访问冲突:1068定义了多个主键

zf2sa74q  于 2023-03-09  发布在  其他
关注(0)|答案(1)|浏览(161)

嗨,这是我的代码,但我收到这个错误:

SQLSTATE[42000]: Syntax error or access violation: 1068 Multiple primary key defined (SQL: alter table `wishlists` add primary key (`userId`, `productId`))

代码:

public function up()
    {
        Schema::create('wishlists', function (Blueprint $table) {
            $table->id();
//            Foreign key for Users table
            $table->foreignId('userId');
            $table->foreign('userId')->references('id')->on('users')->onDelete('cascade');

//            Foreign key for Products table
            $table->foreignId('productId');
            $table->foreign('productId')->references('id')->on('products')->onDelete('cascade');

            $table->primary(['userId', 'productId']);

            $table->timestamps();
        });
    }

谢谢
4.我一直在找它,但什么也没找到

mklgxw1f

mklgxw1f1#

问题解决了!
我只需要移除$table-〉id();.因为该表是相关的,不需要ID。

相关问题