Sha256: 3e79566732fa9471d555ab0b710df8c5abc88c6a437ced1ca0bd9728a328c8df
Contents?: true
Size: 824 Bytes
Versions: 27
Compression:
Stored size: 824 Bytes
Contents
class ReserveStatHasManifestation < ActiveRecord::Base attr_accessible attr_accessible :manifestation_reserve_stat_id, :manifestation_id, :as => :admin belongs_to :manifestation_reserve_stat belongs_to :manifestation validates_uniqueness_of :manifestation_id, :scope => :manifestation_reserve_stat_id validates_presence_of :manifestation_reserve_stat_id, :manifestation_id def self.per_page 10 end end # == Schema Information # # Table name: reserve_stat_has_manifestations # # id :integer not null, primary key # manifestation_reserve_stat_id :integer not null # manifestation_id :integer not null # reserves_count :integer # created_at :datetime # updated_at :datetime #
Version data entries
27 entries across 27 versions & 1 rubygems