Sha256: 542a5faf5ea91cad9bf56e9793e1d9cd33c9a7bd730b828842782aa2c43e7356

Contents?: true

Size: 204 Bytes

Versions: 1

Compression:

Stored size: 204 Bytes

Contents

class RubyGalleryAddColumnsToAlbumPhotos < ActiveRecord::Migration
  def self.up
    has_attached_file :album_photos, :photo
  end
  
  def self.down
    has_attached_file :album_photos , :photo
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby_gallery-0.3.0 lib/generators/active_record/templates/migration.rb