universal_table/app/models/mind_map_node.rb

16 lines
356 B
Ruby

class MindMapNode
include Mongoid::Document
include Mongoid::Timestamps
field :node_id
field :parent_node_id
field :text, type: String
field :expanded, type: Boolean
field :background_color, type: String
field :foreground_color, type: String
field :leading_line_color, type: String
field :link, type: String
belongs_to :mind_map
end