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

20201127141433_add_other_role_to_user_details.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 586dbb033fd7e30cad6da5eab17920a950d9ea4f (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
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless column_exists?(:user_details, :other_role)
      with_lock_retries do
        add_column :user_details, :other_role, :text
      end
    end

    add_text_limit :user_details, :other_role, 100
  end

  def down
    with_lock_retries do
      remove_column :user_details, :other_role
    end
  end
end