Sha256: 423913b263556867dac2ce2a5154896fdaeaf59b93f9b4f3878c8fc771bc4d65

Contents?: true

Size: 246 Bytes

Versions: 3

Compression:

Stored size: 246 Bytes

Contents

class AddAttachmentIconToPaymentMethods < ActiveRecord::Migration
  def self.up
    change_table :spree_payment_methods do |t|
      t.attachment :icon
    end
  end

  def self.down
    drop_attached_file :spree_payment_methods, :icon
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_payment_image-2.0.2 db/migrate/20140128064841_add_attachment_icon_to_payment_methods.rb
spree_payment_image-2.0.1 db/migrate/20140128064841_add_attachment_icon_to_payment_methods.rb
spree_payment_image-2.0 db/migrate/20140128064841_add_attachment_icon_to_payment_methods.rb