class CreateLicitacaoDocumentosDoLicitante < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_documentos_do_licitante do |t|
      t.integer :documento_id
      t.boolean :recebido
      t.integer :pessoa_do_projeto_id

      t.timestamps null: false
    end
  end
end
