class AddAttachmentAnexoCotacaoToLicitacaoPessoasDoPedido < ActiveRecord::Migration[4.2]
  def self.up
    change_table :licitacao_pessoas_do_pedido do |t|
      t.attachment :anexo_cotacao
    end
  end

  def self.down
    remove_attachment :licitacao_pessoas_do_pedido, :anexo_cotacao
  end
end
