class CreateLicitacaoPedidos < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_pedidos do |t|
      t.date :data_do_pedido
      t.date :data_limite_para_complementacao
      t.integer :usuario_id
      t.integer :status

      t.timestamps null: false
    end
  end
end
