class Library::ItemType < ApplicationRecord
  audited

  belongs_to :school

  has_many :bibs

  validates :name, presence: true, length: { maximum: 32 }
  validates :description, length: { maximum: 255 }
end
