tabletop-companion/app/models/text_field.rb

13 lines
377 B
Ruby

# frozen_string_literal: true
class TextField < ApplicationRecord
has_one :character_sheet_feature, as: :featurable
has_one :character_sheet_section, through: :character_sheet_feature
accepts_nested_attributes_for :character_sheet_feature, allow_destroy: true
has_rich_text :content
validates :name, presence: true,
length: { maximum: 100 }
end