class CreateGestaoDeEstoqueSetores < ActiveRecord::Migration[5.2]
  def change
    create_table :gestao_de_estoque_setores do |t|
      t.bigint :item_do_consumo_id
      t.string :nome
      t.decimal :quantidade

      t.timestamps
    end

  end
end
