10 lines
282 B
Ruby
10 lines
282 B
Ruby
class HomeSliderSlide < ApplicationRecord
|
|
belongs_to :home_slider
|
|
belongs_to :image_file
|
|
belongs_to :blur_image, :class_name => "ImageFile"
|
|
belongs_to :article
|
|
|
|
has_many :home_slide_langs, :dependent => :destroy
|
|
has_many :lang_sites, :through => :home_slide_langs
|
|
end
|