由于在我们的 Rails 应用程序中删除了一个用户的错误,我正在尝试强制另一个用户记录进入旧记录 ID。
$ rails console
> User.find(2)
ActiveRecord::RecordNotFound: Couldn't find User with 'id'=2
> replacer = User.find(5)
=> #<User id: 5, created_at: [omitted for brevity ...] >
replacer.id = 2
=> 2
replacer.save
=> true
> User.find(2)
ActiveRecord::RecordNotFound: Couldn't find User with 'id'=2
> User.find(5)
ActiveRecord::RecordNotFound: Couldn't find User with 'id'=5
> replacer
=> #<User id: 2, created_at: [omitted for brevity ...] >
> replacer.valid?
=> true
这是怎么回事?
更新语句是使用 in 内存对象的 id 构造的,该对象已设置为 2。您无法更新不存在的记录。
如果你想留在活跃的记录土地,我认为你可以做:User.update(5, id: 2)
如果做不到这一点,你绝对可以在SQL中做到这一点。 UPDATE users SET id = 2 WHERE id = 5
.