aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/fixtures/company.rb
blob: cbbd0edb14a7fed627f8f9a417852531f15abfef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                  
                 







                                                                 
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