Methods
F
L
Attributes
[RW] last_name
Instance Public methods
find_least_recent()
# File activerecord/test/models/developer.rb, line 41
def find_least_recent
  order("id ASC").first
end
find_most_recent()
# File activerecord/test/models/developer.rb, line 13
def find_most_recent
  order("id DESC").first
end
log=(message)
# File activerecord/test/models/developer.rb, line 74
def log=(message)
  audit_logs.build :message => message
end