class Section < ApplicationRecord belongs_to :category has_one :taxonomy, through: :category acts_as_list column: :rank, scope: :category validates :name, uniqueness: { scope: :category_id }, length: 3..64 end