Sha256: 487e094b7560e1a3d542e710598fabea13aadf671fe400abab1984393f3aec66
Contents?: true
Size: 859 Bytes
Versions: 25
Compression:
Stored size: 859 Bytes
Contents
class CheckoutStatHasManifestation < ActiveRecord::Base attr_accessible attr_accessible :manifestation_checkout_stat_id, :manifestation_id, :as => :admin belongs_to :manifestation_checkout_stat belongs_to :manifestation validates_uniqueness_of :manifestation_id, :scope => :manifestation_checkout_stat_id validates_presence_of :manifestation_checkout_stat_id, :manifestation_id paginates_per 10 end # == Schema Information # # Table name: checkout_stat_has_manifestations # # id :integer not null, primary key # manifestation_checkout_stat_id :integer not null # manifestation_id :integer not null # checkouts_count :integer # created_at :datetime not null # updated_at :datetime not null #
Version data entries
25 entries across 25 versions & 1 rubygems