Sha256: 0a1fd5c1a7c2011535679bae08585f9f832f531f81ef6a5159741728fd29425e
Contents?: true
Size: 419 Bytes
Versions: 17
Compression:
Stored size: 419 Bytes
Contents
# == Schema Information # # Table name: proclaim_images # # id :integer not null, primary key # post_id :integer # image :string # created_at :datetime not null # updated_at :datetime not null # module Proclaim class Image < ActiveRecord::Base belongs_to :post, inverse_of: :images mount_uploader :image, ImageUploader validates_presence_of :post, :image end end
Version data entries
17 entries across 17 versions & 1 rubygems