lockaz_app/app/models/p_contact.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

10 lines
201 B
Ruby

class PContact < ApplicationRecord
belongs_to :contactable, :polymorphic => true
has_many :p_contact_contact_types
has_many :p_contact_types, :through => :p_contact_contact_types
end