class CreateLicitacaoOrdensDeCompra < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_ordens_de_compra do |t|
      t.integer :orcamento_id
      t.date :data_da_solicitacao
      t.string :numero
      t.integer :projeto_id
      t.integer :pessoa_do_projeto_id
      t.integer :status
      t.string :motivo_do_cancelamento

      t.timestamps null: false
    end
  end
end
