Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200703035021_add_notes_to_timelogs.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d711fd0400d6f1d43483d836f60fc3ac2f234abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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