10 lines
202 B
Ruby
10 lines
202 B
Ruby
class PContact < ActiveRecord::Base
|
|
|
|
belongs_to :contactable, :polymorphic => true
|
|
|
|
has_many :p_contact_contact_types
|
|
|
|
has_many :p_contact_types, :through => :p_contact_contact_types
|
|
|
|
end
|