Sha256: 4dd7d7d33f66471e3b637cf27fd871c0118db9b568c8f07f4f520b3c901ae7c9

Contents?: true

Size: 211 Bytes

Versions: 1

Compression:

Stored size: 211 Bytes

Contents

class RubyGalleryAddColumnsToAlbumPhotos < ActiveRecord::Migration
  def change_table :album_photos do |t|
    t.attachment, :photo
  end
  
  def self.down
    remove_attachment :album_photos , :photo
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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