18 lines
		
	
	
		
			333 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			333 B
		
	
	
	
		
			Ruby
		
	
	
	
class Tile
 | 
						|
  include Mongoid::Document
 | 
						|
  include Mongoid::Timestamps
 | 
						|
  
 | 
						|
  field :data_category
 | 
						|
  field :data_content
 | 
						|
  field :position, type: Integer
 | 
						|
  field :row, type: Integer
 | 
						|
  field :column, type: Integer
 | 
						|
  field :shape
 | 
						|
  field :fullsize, type: Boolean
 | 
						|
  field :title
 | 
						|
  
 | 
						|
  belongs_to :group
 | 
						|
  belongs_to :desktop_widget
 | 
						|
    
 | 
						|
end
 |