Alias an attribute with alias_attribute method.
The first argument is the name for the new attribute, while the second argument is to identify the attribute that is already defined.
class User < ActiveRecord::Base alias_attribute :username, :login end
Just finishing up brewing up some fresh ground comments...