class CreateGestaoDeEstoqueItensDasDevolucoesDeMateriais < ActiveRecord::Migration[5.2]
  def change
    create_table :gestao_de_estoque_itens_das_devolucoes_de_materiais do |t|
      t.bigint :devolucao_de_material_id
      t.bigint :item_id
      t.numeric :quantidade_devolvida
      t.integer :unidade_de_medida_id

      t.timestamps
    end
  end
end
