Sha256: 36aa47b9948a54a986b12f021485355cab1d04befeef5f1f2a7d9be77f9058da
Contents?: true
Size: 302 Bytes
Versions: 27
Compression:
Stored size: 302 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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
Version data entries
27 entries across 27 versions & 2 rubygems