Curious about Rails models - in Hartl's Rails Tutorial, he has a User model that includes the following has_many :microposts
attr_accessor :remember_token, :activation_token, :reset_token
before_save :downcase_email
before_create :create_activation_digest
has_secure_password
My question is - does the order you put these in matter?