2015-09-22 05:56:02 +00:00
|
|
|
class Floor
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include Slug
|
|
|
|
|
|
|
|
field :title, as: :slug_title
|
|
|
|
field :layout
|
|
|
|
|
|
|
|
mount_uploader :layout_image, ImageUploader
|
2015-09-25 10:11:30 +00:00
|
|
|
mount_uploader :frontend_image, ImageUploader
|
2015-09-22 05:56:02 +00:00
|
|
|
|
|
|
|
belongs_to :building
|
|
|
|
has_many :floor_units, :dependent => :destroy
|
|
|
|
end
|