6d9490ddcc
Compatibility with Rails 1.2 is preserved. git-svn-id: http://redmine.rubyforge.org/svn/trunk@975 e93f8b46-1217-0410-a6f0-8f06a7374b81
9 lines
225 B
Ruby
9 lines
225 B
Ruby
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 |