class CreateGestaoDeEstoqueDevolucoesDeMateriais < ActiveRecord::Migration[5.2]
  def change
    create_table :gestao_de_estoque_devolucoes_de_materiais do |t|
      t.string :numero_da_devolucao
      t.bigint :requisicao_de_material_id
      t.bigint :orcamento_id
      t.integer :status
      t.date :data_da_devolucao
      t.text :historico_da_devolucao
      t.text :motivo_da_recusa
      t.integer :tipo_de_devolucao

      t.timestamps
    end
  end
end
