summaryrefslogtreecommitdiff
path: root/db/migrate/20200703035021_add_notes_to_timelogs.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-20 18:42:06 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-20 18:42:06 +0000
commit6e4e1050d9dba2b7b2523fdd1768823ab85feef4 (patch)
tree78be5963ec075d80116a932011d695dd33910b4e /db/migrate/20200703035021_add_notes_to_timelogs.rb
parent1ce776de4ae122aba3f349c02c17cebeaa8ecf07 (diff)
downloadgitlab-ce-6e4e1050d9dba2b7b2523fdd1768823ab85feef4.tar.gz
Add latest changes from gitlab-org/gitlab@13-3-stable-ee
Diffstat (limited to 'db/migrate/20200703035021_add_notes_to_timelogs.rb')
-rw-r--r--db/migrate/20200703035021_add_notes_to_timelogs.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/db/migrate/20200703035021_add_notes_to_timelogs.rb b/db/migrate/20200703035021_add_notes_to_timelogs.rb
new file mode 100644
index 00000000000..d711fd0400d
--- /dev/null
+++ b/db/migrate/20200703035021_add_notes_to_timelogs.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class AddNotesToTimelogs < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ with_lock_retries do
+ add_column :timelogs, :note_id, :integer
+ end
+ add_concurrent_index :timelogs, :note_id
+ add_concurrent_foreign_key :timelogs, :notes, column: :note_id
+ end
+
+ def down
+ remove_foreign_key_if_exists :timelogs, column: :note_id
+ remove_concurrent_index :timelogs, :note_id
+ with_lock_retries do
+ remove_column :timelogs, :note_id
+ end
+ end
+end