class CreatePatrimonioDadosDoDestinoDaTransferencias < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_dados_dos_destinos_das_transferencias do |t|
      t.bigint :transferencia_id
      t.bigint :unidade_gestora_destino_id
      t.bigint :responsavel_destino_id
      t.bigint :centro_de_custo_destino_id

      t.timestamps
    end
  end
end
