Sha256: 8fefa68744a709d537154b7428de6840fad7889d3cd5a52e487b8411067cbc6d

Contents?: true

Size: 228 Bytes

Versions: 3

Compression:

Stored size: 228 Bytes

Contents

class AddAttachmentLogoToOrganizations < ActiveRecord::Migration
  def self.up
    change_table :organizations do |t|
      t.attachment :logo
    end
  end

  def self.down
    remove_attachment :organizations, :logo
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pshq_engine-0.1.6 db/migrate/20150429211309_add_attachment_logo_to_organizations.rb
pshq_engine-0.1.5 db/migrate/20150429211309_add_attachment_logo_to_organizations.rb
pshq_engine-0.0.1 db/migrate/20150429211309_add_attachment_logo_to_organizations.rb