MiraitSystems/enju_trunk

View on GitHub
app/models/checkout_stat_has_manifestation.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CheckoutStatHasManifestation < ActiveRecord::Base
  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
#  updated_at                     :datetime
#