orbit-basic/app/models/tile.rb

15 lines
213 B
Ruby
Raw Normal View History

2012-04-03 10:25:41 +00:00
class Tile
include Mongoid::Document
include Mongoid::Timestamps
2012-04-11 07:31:10 +00:00
field :data_category
field :data_content
field :position, type: Integer
field :shape
field :title
2012-04-03 10:25:41 +00:00
belongs_to :group
end