This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
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
|