summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200525121014_drop_users_ghost_column.rb
blob: 1f80bc74b9d2b2db72e71a7a6d7ca59b6e9e4cab (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
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :users, 'index_users_on_ghost'

    with_lock_retries do
      remove_column :users, :ghost
    end
  end

  def down
    unless column_exists?(:users, :ghost)
      with_lock_retries do
        add_column :users, :ghost, :boolean # rubocop:disable Migration/AddColumnsToWideTables
      end
    end

    execute 'UPDATE users set ghost = TRUE WHERE user_type = 5'

    add_concurrent_index :users, :ghost
  end
end