blob: cd39ea7898377e3d7b78495495e474624c17497f (
plain) (
tree)
|
|
class Company < ActiveRecord::Base
has_one :mascot
attr_protected :rating
set_sequence_name :companies_nonstd_seq
validates_presence_of :name
def validate
errors.add('rating', 'rating should not be 2') if rating == 2
end
end
|