虽然我在composer.json中添加了doctrine / dbal并更新了作曲家,但即便面对错误
完整性约束违规:1062重复输入''为了关键' users_oauthprovider_id_unique
Schema::table('users', function (Blueprint $table) {
$table->string('password')->nullable()->change();
$table->string('oauthprovider');
$table->string('oauthprovider_id')->unique();
});
答案 0 :(得分:0)
尝试使oauthprovider_id可以为空。