class CreatePatrimonioItensDosRecebimentosDeBens < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_itens_dos_recebimentos_de_bens do |t|
      t.bigint :recebimento_de_bem_id
      t.bigint :item_id
      t.bigint :unidade_de_medida_id
      t.numeric :quantidade
      t.numeric :valor_unitario
      t.numeric :valor_total
      t.string :marca

      t.timestamps
    end
  end
end
