Last active
August 29, 2015 14:26
-
-
Save mindaslab/01f2c5d341b6767ae410 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
def status time = Time.now | |
statuses.where("created_at <= '#{time.to_s(:db)}'"). | |
order("created_at desc").first | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment