class League include Mongoid::Document field :name, type: String embeds_many :divisions accepts_nested_attributes_for :divisions, allow_destroy: true before_destroy :destroy_children def destroy_children divisions.destroy_all end end