universal_table/app/models/mind_map.rb

11 lines
212 B
Ruby
Raw Normal View History

2025-05-23 03:41:14 +00:00
class MindMap
include Mongoid::Document
include Mongoid::Timestamps
include Slug
field :title, as: :slug_title, localize: true
belongs_to :u_table
has_many :mind_map_nodes, :dependent => :destroy
end