Sha256: b320f2c45d21f908e2e4d2e9cd68117fa91102bf7bc3f0b81f7cbe7f0c8ced87
Contents?: true
Size: 584 Bytes
Versions: 29
Compression:
Stored size: 584 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 not null # updated_at :datetime not null #
Version data entries
29 entries across 29 versions & 1 rubygems