X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/96fefe6c6fc2e3bd7e4efbb0b6a7dedb9221aff7..HEAD:/services/api/db/migrate/20180917205609_recompute_file_names_index.rb diff --git a/services/api/db/migrate/20180917205609_recompute_file_names_index.rb b/services/api/db/migrate/20180917205609_recompute_file_names_index.rb index b321422143..ed6be3bfe1 100644 --- a/services/api/db/migrate/20180917205609_recompute_file_names_index.rb +++ b/services/api/db/migrate/20180917205609_recompute_file_names_index.rb @@ -8,7 +8,7 @@ class RecomputeFileNamesIndex < ActiveRecord::Migration[4.2] Collection.select(:portable_data_hash, :manifest_text).where(portable_data_hash: pdhs).distinct(:portable_data_hash).each do |c| ActiveRecord::Base.connection.exec_query("update collections set file_names=$1 where portable_data_hash=$2", "update file_names index", - [[nil, c.manifest_files], [nil, c.portable_data_hash]]) + [c.manifest_files, c.portable_data_hash]) end ActiveRecord::Base.connection.exec_query('COMMIT') end