2012-05-07 11:00:50 +00:00
|
|
|
class DesktopWidget
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :name
|
|
|
|
field :author
|
|
|
|
field :shape
|
2012-05-11 07:27:16 +00:00
|
|
|
field :desktop_id
|
|
|
|
field :status
|
|
|
|
field :section
|
2012-05-07 11:00:50 +00:00
|
|
|
|
2012-05-11 07:27:16 +00:00
|
|
|
belongs_to :desktop
|
2012-05-07 11:00:50 +00:00
|
|
|
end
|