Methods
F
L
Instance Public methods
find_least_recent()
# File activerecord/test/models/developer.rb, line 37
def find_least_recent
  order("id ASC").first
end
find_most_recent()
# File activerecord/test/models/developer.rb, line 11
def find_most_recent
  order("id DESC").first
end
log=(message)
# File activerecord/test/models/developer.rb, line 66
def log=(message)
  audit_logs.build :message => message
end