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

20210424163400_add_project_id_fk_to_timelogs.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69542e7627d7bae122fa0e7f5ad92ce2e1f4d4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class AddProjectIdFkToTimelogs < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_timelogs_on_project_id_and_spent_at'

  disable_ddl_transaction!

  def up
    add_concurrent_index :timelogs, [:project_id, :spent_at], name: INDEX_NAME
    add_concurrent_foreign_key :timelogs, :projects, column: :project_id, on_delete: :cascade
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists :timelogs, column: :project_id
    end
    remove_concurrent_index_by_name :timelogs, INDEX_NAME
  end
end