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

add_namespaces_emails_enabled_column_data.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46e2d5cb93018ab211fe3d1fc6ba1b81dc39a792 (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
32
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Iterates through the namespaces table and attempts to set the
    # opposite of the value of the column "emails_disabled" to a new
    # column in namespace_settings called emails_enabled
    class AddNamespacesEmailsEnabledColumnData < BatchedMigrationJob
      feature_category :database
      operation_name :add_namespaces_emails_enabled_column_data

      # Targeted table
      class NamespaceSetting < ApplicationRecord
        self.table_name = 'namespace_settings'
      end

      def perform
        each_sub_batch do |sub_batch|
          plucked_list = sub_batch.where('NOT emails_disabled IS NULL').pluck(:id, :emails_disabled)
          next if plucked_list.empty?

          ApplicationRecord.connection.execute <<~SQL
                  UPDATE namespace_settings
                  SET emails_enabled= NOT subquery.emails_enabled
                  FROM (SELECT * FROM (#{Arel::Nodes::ValuesList.new(plucked_list).to_sql}) AS updates(namespace_id, emails_enabled)) AS subquery
                  WHERE namespace_settings.namespace_id=subquery.namespace_id
          SQL
        end
      end
    end
  end
end