11453: Merge branch 'master' into 11453-federated-tokens
[arvados.git] / services / api / lib / can_be_an_owner.rb
index 4375d775350cd9001353231339ec38e3e5d33c86..1a990e14ea09fa67d6682c9f5baf7b776a0a5c11 100644 (file)
@@ -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,7 @@ 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'
       klass = t.classify.constantize
       next unless klass and 'owner_uuid'.in?(klass.columns.collect(&:name))
       base.has_many(t.to_sym,