X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d43dce642a9681a33a5259f5bde05c8d3f3b690e..e6769d20505e2c8c74b2d7e3f9c2f33f2a2db092:/services/api/lib/can_be_an_owner.rb diff --git a/services/api/lib/can_be_an_owner.rb b/services/api/lib/can_be_an_owner.rb index 4375d77535..6f30f5ae33 100644 --- a/services/api/lib/can_be_an_owner.rb +++ b/services/api/lib/can_be_an_owner.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + # Protect referential integrity of owner_uuid columns in other tables # that can refer to the uuid column in this table. @@ -11,6 +15,10 @@ module CanBeAnOwner ActiveRecord::Base.connection.tables.each do |t| next if t == base.table_name next if t == 'schema_migrations' + next if t == 'permission_refresh_lock' + next if t == 'ar_internal_metadata' + next if t == 'commit_ancestors' + next if t == 'commits' klass = t.classify.constantize next unless klass and 'owner_uuid'.in?(klass.columns.collect(&:name)) base.has_many(t.to_sym,