instiki/vendor/rails/actionpack/test/fixtures/company.rb

10 lines
243 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
class Company < ActiveRecord::Base
has_one :mascot
2007-01-22 14:43:50 +01:00
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