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