0

我必须更新没有 Model 的表。说,表的名称是“用户”。如果它有一个模型,我会像这样更新它:

obj = User.find_by_email "test@example.com"
obj.name = "norman"
obj.save

但它只是一张没有任何模型的桌子。那么,如何像这样更新这个表呢?

4

1 回答 1

2
ActiveRecord::Base.connection.execute("update users set name = 'norman' where email='test@example.com'")
于 2013-06-12T20:17:28.283 回答