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

20200123090839_remove_analytics_repository_table_fks_on_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94fafe214c2056a0f0c938bb4a3a5b35ec02e2cd (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
26
# frozen_string_literal: true

class RemoveAnalyticsRepositoryTableFksOnProjects < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      # Requires ExclusiveLock on all tables. analytics_* tables are empty
      remove_foreign_key :analytics_repository_files, :projects
      remove_foreign_key :analytics_repository_file_edits, :projects if table_exists?(:analytics_repository_file_edits) # this table might be already dropped on development environment
      remove_foreign_key :analytics_repository_file_commits, :projects
    end
  end

  def down
    with_lock_retries do
      # rubocop:disable Migration/AddConcurrentForeignKey
      add_foreign_key :analytics_repository_files, :projects, on_delete: :cascade
      add_foreign_key :analytics_repository_file_edits, :projects, on_delete: :cascade
      add_foreign_key :analytics_repository_file_commits, :projects, on_delete: :cascade
      # rubocop:enable Migration/AddConcurrentForeignKey
    end
  end
end