12 lines
316 B
Ruby
12 lines
316 B
Ruby
class MOdr < ApplicationRecord
|
|
belongs_to :p_customer
|
|
|
|
|
|
belongs_to :background_image_file , :class_name => "ImageFile"
|
|
belongs_to :banner_image_file, :class_name => "ImageFile"
|
|
belongs_to :logo_image_file, :class_name => "ImageFile"
|
|
belongs_to :social_image_file, :class_name => "ImageFile"
|
|
|
|
|
|
end
|