rails/activerecord/test/models/contract.rb
2011-05-31 19:47:34 +01:00

20 lines
275 B
Ruby

class Contract < ActiveRecord::Base
belongs_to :company
belongs_to :developer
before_save :hi
after_save :bye
attr_accessor :hi_count, :bye_count
def hi
@hi_count ||= 0
@hi_count += 1
end
def bye
@bye_count ||= 0
@bye_count += 1
end
end