class AddAttachmentOrganisationLogoToOrganisations < ActiveRecord::Migration[6.0]
  def self.up
    change_table :organisations do |t|
      t.attachment :organisation_logo
    end
  end

  def self.down
    remove_attachment :organisations, :organisation_logo
  end
end
