summaryrefslogtreecommitdiff
path: root/db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb')
-rw-r--r--db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb b/db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb
index a68ce66e4a6..166ce320a23 100644
--- a/db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb
+++ b/db/migrate/20200429015603_add_fk_to_project_repository_storage_moves.rb
@@ -7,7 +7,7 @@ class AddFkToProjectRepositoryStorageMoves < ActiveRecord::Migration[6.0]
def up
with_lock_retries do
- add_foreign_key :project_repository_storage_moves, :projects, on_delete: :cascade # rubocop:disable Migration/AddConcurrentForeignKey
+ add_foreign_key :project_repository_storage_moves, :projects, on_delete: :cascade
end
end