Sha256: 1e8d5182b966e46fca2ad29f7af972ae75aa4848cbba83f9632c83ef3bd6bfa0
Contents?: true
Size: 187 Bytes
Versions: 11
Compression:
Stored size: 187 Bytes
Contents
class ImagePage < ActiveRecord::Base belongs_to :image belongs_to :page before_save do |image_page| image_page.position = (ImagePage.maximum(:position) || -1) + 1 end end
Version data entries
11 entries across 11 versions & 1 rubygems