mmsc_app/app/models/p_contact.rb
Nicolas Bally a6aa1f6074 Initial
2020-05-25 11:40:11 +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