blob: 0d1c29b9068edc88e70d936148ea0c25b57a717a [file] [log] [blame]
class Company < ActiveRecord::Base
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