summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190902160015_remove_support_bot_column_from_users.rb
blob: 80d69b57f5dd37bda28595f56d61f80c86532ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RemoveSupportBotColumnFromUsers < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    return unless column_exists?(:users, :support_bot)

    remove_column :users, :support_bot
  end

  def down
    # no-op because the column should not exist in the previous version
  end
end