This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/models/p_contact.rb

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