Sha256: 8179325a7f5bfd0b9e221bcc62535bb01553b6e60e1091e4824fd4e9b0d11a73
Contents?: true
Size: 692 Bytes
Versions: 10
Compression:
Stored size: 692 Bytes
Contents
class BookmarkStatHasManifestation < ActiveRecord::Base attr_accessible attr_accessible :bookmark_stat_id, :manifestation_id, :as => :admin belongs_to :bookmark_stat belongs_to :manifestation validates_uniqueness_of :manifestation_id, :scope => :bookmark_stat_id validates_presence_of :bookmark_stat_id, :manifestation_id def self.per_page 10 end end # == Schema Information # # Table name: bookmark_stat_has_manifestations # # id :integer not null, primary key # bookmark_stat_id :integer not null # manifestation_id :integer not null # bookmarks_count :integer # created_at :datetime # updated_at :datetime #
Version data entries
10 entries across 10 versions & 1 rubygems