summaryrefslogtreecommitdiff
path: root/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb')
-rw-r--r--db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb b/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb
index a9fbee388c5..532133fe7f9 100644
--- a/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb
+++ b/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb
@@ -7,7 +7,7 @@ class AddAuthorForeignKeyToTestReports < ActiveRecord::Migration[6.0]
def up
with_lock_retries do
- add_foreign_key :requirements_management_test_reports, :users, column: :author_id, on_delete: :nullify # rubocop:disable Migration/AddConcurrentForeignKey
+ add_foreign_key :requirements_management_test_reports, :users, column: :author_id, on_delete: :nullify
end
end