Skip to content

Instantly share code, notes, and snippets.

@mindaslab
Last active August 29, 2015 14:26
Show Gist options
  • Save mindaslab/01f2c5d341b6767ae410 to your computer and use it in GitHub Desktop.
Save mindaslab/01f2c5d341b6767ae410 to your computer and use it in GitHub Desktop.
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