1

我正在尝试使用我写的 after_create 回调更新数据库中的数据

Dm::Advertisement.where (:type => Dm::Advertisement).update_all(ads_counter: 0)

在我的模型中,但有 SyntaxError。谁能指出我在哪里做错了?

4

2 回答 2

1
Dm::Advertisement.where (:type => Dm::Advertisement).update_all("ads_counter =0")
于 2012-10-26T07:49:58.003 回答
1
Dm::Advertisement.where (:type => Dm::Advertisement).update_all(:ads_counter => 0 )
于 2012-10-26T07:54:10.307 回答