10 lines
251 B
Ruby
10 lines
251 B
Ruby
class PContact < ApplicationRecord
|
|
|
|
belongs_to :contactable, :polymorphic => true
|
|
|
|
has_many :p_contact_contact_types, :dependent => :destroy
|
|
|
|
has_many :p_contact_types, :through => :p_contact_contact_types
|
|
belongs_to :p_payment_type
|
|
end
|