我正在编写一个范围,它应该查找状态为 open 的调用以及日期时间大于当前时间的任何调用。我对语法有点模糊,有人可以帮我指出正确的方向。
失败的例子:
scope :scheduled_calls, where(:call_status => "open", :transfer_date > Time.now)
我正在编写一个范围,它应该查找状态为 open 的调用以及日期时间大于当前时间的任何调用。我对语法有点模糊,有人可以帮我指出正确的方向。
失败的例子:
scope :scheduled_calls, where(:call_status => "open", :transfer_date > Time.now)