On Sat, Jul 23, 2011 at 9:56 PM, Rodrigo Ruiz <[email protected]>wrote:
> Hi, Id like to do something like that:
>
> @payment_history = PaymentHistory.where("company_id = #{@company.id} AND
> created_at <= #{Time.now} AND create_at >= #{Time.now - 1.month}").first
>
Rodrigo, you might be able to do something like this:
time_range = (Time.now - 1.month)..(Time.now)
@payment_history = PaymentHistory.where( :company_id => @company.id ).where(
:created_at => time_range ).first
Good luck,
-Conrad
>
> problem is it doesn't seen to let me compare the create_at attribute with
> Time.now.
>
> Anyone knows the proper way to do this?
>
> Thank you,
> Rodrigo
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.