class CreateGestaoDeEstoqueInformacoesExtras < ActiveRecord::Migration[5.2]
  def change
    create_table :gestao_de_estoque_informacoes_extras do |t|
      t.date :validade
      t.integer :aspecto_geral
      t.boolean :perecivel
      t.string :lote_de_fabricacao
      t.bigint :item_do_recebimento_de_material_id
      t.float :quantidade

      t.timestamps
    end
  end
end
