class CreatePatrimonioItensDaTransferencia < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_itens_da_transferencia do |t|
      t.bigint :transferencia_id
      t.bigint :item_id
      t.bigint :bem_patrimonial_id
      t.bigint :unidade_gestora_id
      t.bigint :centro_de_custo_id
      t.decimal :quantidade_solicitada

      t.timestamps
    end
  end
end
