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
2021-08-23 10:26:02 +02:00

10 lines
225 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
end