woese/guara-crm

View on GitHub
app/models/customer_pf.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CustomerPf < ActiveRecord::Base
  # attr_accessible :title, :body
  
  attr_protected
  
  has_one    :customer    , :as => :person
  belongs_to    :company    , class_name: "Customer"
  has_many    :history_pfs
  
  def prefix
    "pf"
  end
end