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

20170508170547_add_head_pipeline_for_each_merge_request.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc3850c0c232d3ca627640ecde5eaf391d0b1cce (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
class AddHeadPipelineForEachMergeRequest < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    disable_statement_timeout

    pipelines = Arel::Table.new(:ci_pipelines)
    merge_requests = Arel::Table.new(:merge_requests)

    head_id = pipelines.
      project(Arel::Nodes::NamedFunction.new('max', [pipelines[:id]])).
      from(pipelines).
      where(pipelines[:ref].eq(merge_requests[:source_branch])).
      where(pipelines[:project_id].eq(merge_requests[:source_project_id]))

    sub_query = Arel::Nodes::SqlLiteral.new(Arel::Nodes::Grouping.new(head_id).to_sql)

    update_column_in_batches(:merge_requests, :head_pipeline_id, sub_query)
  end

  def down
  end
end