class ReportFactor < ActiveRecord::Base
  belongs_to :factor
  belongs_to :report
  after_validation :set_del
  attr_accessor :active

  private
  def set_del
   # if !self.new_record? && self.active != true
   #   self.destroy
   # end
  end
end
