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.rb19
1 files changed, 19 insertions, 0 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
new file mode 100644
index 00000000000..a9fbee388c5
--- /dev/null
+++ b/db/migrate/20200511191027_add_author_foreign_key_to_test_reports.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class AddAuthorForeignKeyToTestReports < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ with_lock_retries do
+ add_foreign_key :requirements_management_test_reports, :users, column: :author_id, on_delete: :nullify # rubocop:disable Migration/AddConcurrentForeignKey
+ end
+ end
+
+ def down
+ with_lock_retries do
+ remove_foreign_key :requirements_management_test_reports, column: :author_id
+ end
+ end
+end