space/app/models/building.rb

11 lines
255 B
Ruby
Raw Normal View History

2015-09-22 05:56:02 +00:00
class Building
include Mongoid::Document
include Mongoid::Timestamps
2015-10-13 10:55:18 +00:00
include OrbitCategory::Categorizable
2015-09-22 05:56:02 +00:00
include Slug
field :title, as: :slug_title, localize: true
mount_uploader :image, ImageUploader
has_many :floors, :dependent => :destroy
end