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

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

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

  DOWNTIME = false
  INDEX_NAME = 'active_billable_users'
  HUMAN_TYPE = 'NULL'
  HUMAN_SVC_BOT_TYPES = "#{HUMAN_TYPE}, 6, 4"
  BOT_TYPES = '2,6,1,3,7,8'

  disable_ddl_transaction!

  def up
    add_concurrent_index :users, :id, name: INDEX_NAME, where: "(state = 'active' AND (user_type is #{HUMAN_TYPE} or user_type in (#{HUMAN_SVC_BOT_TYPES}))) and ((users.user_type IS #{HUMAN_TYPE}) OR (users.user_type <> ALL ('{#{BOT_TYPES}}')))"
  end

  def down
    remove_concurrent_index_by_name(:users, INDEX_NAME)
  end
end