8 lines
174 B
Ruby
8 lines
174 B
Ruby
class IHebergement < ActiveRecord::Base
|
|
has_many :i_hebergement_i_websites
|
|
has_many :i_websites, :through => :i_hebergement_i_websites
|
|
|
|
belongs_to :p_customer
|
|
|
|
end
|