class CreateLicitacaoPessoaDoLote < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_pessoas_do_projeto_do_lote do |t|
			t.integer :lote_id
			t.integer :pessoa_do_projeto_id
			t.boolean :habilitado
			t.integer :nota_tecnica
    end
  end
end
