X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2b39eafad562600f7d7beb83f0f7f241a1c47bfc..4a27ec5683273596d797e84924c4c583cfc53560:/services/api/db/migrate/20150423145759_no_filenames_in_collection_search_index.rb diff --git a/services/api/db/migrate/20150423145759_no_filenames_in_collection_search_index.rb b/services/api/db/migrate/20150423145759_no_filenames_in_collection_search_index.rb index 7b52abd012..1930f1332d 100644 --- a/services/api/db/migrate/20150423145759_no_filenames_in_collection_search_index.rb +++ b/services/api/db/migrate/20150423145759_no_filenames_in_collection_search_index.rb @@ -1,9 +1,15 @@ -class NoFilenamesInCollectionSearchIndex < ActiveRecord::Migration +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + +class NoFilenamesInCollectionSearchIndex < ActiveRecord::Migration[4.2] def up remove_index :collections, :name => 'collections_search_index' add_index :collections, ["owner_uuid", "modified_by_client_uuid", "modified_by_user_uuid", "portable_data_hash", "uuid", "name"], name: 'collections_search_index' end def down + remove_index :collections, :name => 'collections_search_index' + add_index :collections, ["owner_uuid", "modified_by_client_uuid", "modified_by_user_uuid", "portable_data_hash", "uuid", "name", "file_names"], name: 'collections_search_index' end end