18 lines
652 B
Ruby
18 lines
652 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CharacterSheetSection < ApplicationRecord
|
|
belongs_to :character
|
|
belongs_to :parent_section, optional: true,
|
|
class_name: "CharacterSheetSection"
|
|
has_many :character_sheet_subsections, class_name: "CharacterSheetSection",
|
|
foreign_key: :parent_section_id,
|
|
dependent: :destroy
|
|
has_many :counters, dependent: :destroy
|
|
has_many :stats, dependent: :destroy
|
|
|
|
validates :name, presence: true,
|
|
length: { maximum: 255 }
|
|
|
|
scope :top_level, -> { where.missing(:parent_section) }
|
|
end
|