Sha256: f423f869390e26a94ca9e2f96f870ebdeb7aa5f79fe496c6fd345dd52cade337
Contents?: true
Size: 504 Bytes
Versions: 56
Compression:
Stored size: 504 Bytes
Contents
class CirculationStatus < ActiveRecord::Base include MasterModel default_scope :order => "position" scope :available_for_checkout, where(:name => 'Available On Shelf') has_many :items attr_protected :name end # == Schema Information # # Table name: circulation_statuses # # id :integer not null, primary key # name :string(255) not null # display_name :text # note :text # position :integer # created_at :datetime # updated_at :datetime #
Version data entries
56 entries across 56 versions & 2 rubygems