Sha256: 2e9945608c379837b5db4f994ae6c79ec2d57ff4fac41f2da3d4145aa8f5a89e
Contents?: true
Size: 548 Bytes
Versions: 34
Compression:
Stored size: 548 Bytes
Contents
class CirculationStatus < ActiveRecord::Base attr_accessible :name, :display_name, :note include MasterModel default_scope :order => "circulation_statuses.position" scope :available_for_checkout, where(:name => 'Available On Shelf') has_many :items 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
34 entries across 34 versions & 1 rubygems