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

20191004081520_fill_productivity_analytics_start_date.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9432cd6870883cb8737c8542483cc49a1cf85e7c (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
27
28
29
30
31
# frozen_string_literal: true

# Expected migration duration: 1 minute
class FillProductivityAnalyticsStartDate < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :merge_request_metrics, :merged_at,
                         where: "merged_at > '2019-09-01' AND commits_count IS NOT NULL",
                         name: 'fill_productivity_analytics_start_date_tmp_index'

    execute(
      <<SQL
        UPDATE application_settings
        SET productivity_analytics_start_date = COALESCE((SELECT MIN(merged_at) FROM merge_request_metrics
            WHERE merged_at > '2019-09-01' AND commits_count IS NOT NULL), NOW())
SQL
    )

    remove_concurrent_index :merge_request_metrics, :merged_at,
                            name: 'fill_productivity_analytics_start_date_tmp_index'
  end

  def down
    execute('UPDATE application_settings SET productivity_analytics_start_date = NULL')
  end
end