Sha256: ce595827596d755f38d7ad74c62313ee7ea94ad6c5c2b4693808a0cbd44e2de6
Contents?: true
Size: 707 Bytes
Versions: 7
Compression:
Stored size: 707 Bytes
Contents
class CheckoutStatHasUser < ActiveRecord::Base attr_accessible attr_accessible :user_checkout_stat_id, :user_id, :as => :admin belongs_to :user_checkout_stat belongs_to :user validates_uniqueness_of :user_id, :scope => :user_checkout_stat_id validates_presence_of :user_checkout_stat_id, :user_id paginates_per 10 end # == Schema Information # # Table name: checkout_stat_has_users # # id :integer not null, primary key # user_checkout_stat_id :integer not null # user_id :integer not null # checkouts_count :integer default(0), not null # created_at :datetime # updated_at :datetime #
Version data entries
7 entries across 7 versions & 1 rubygems