class Library::Location < ApplicationRecord
  audited

  belongs_to :school

  has_many :holdings

  validates :name, presence: true, length: { maximum: 64 }
end
