summaryrefslogtreecommitdiff
path: root/db/migrate/20200304085423_add_user_type.rb
blob: 3c20f2d26d87fb28be240e5506e948053bcc926e (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 AddUserType < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      add_column :users, :user_type, :integer, limit: 2 # rubocop:disable Migration/AddColumnsToWideTables
    end
  end

  def down
    with_lock_retries do
      remove_column :users, :user_type
    end
  end
end