# frozen_string_literal: true class Character < ApplicationRecord has_many :story_pages, dependent: :nullify validates :name, presence: true, length: { maximum: 100 } validates :color, format: { with: /\A#[0-9a-f]{6}\z/i }, allow_blank: true end