summaryrefslogtreecommitdiff
path: root/db/migrate/20200304124406_add_unlock_membership_to_ldap_of_groups.rb
blob: 2aa58c92c3e2c684db8e224a15326b7efe0347dc (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 AddUnlockMembershipToLdapOfGroups < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      add_column(:namespaces, :unlock_membership_to_ldap, :boolean)
    end
  end

  def down
    with_lock_retries do
      remove_column :namespaces, :unlock_membership_to_ldap
    end
  end
end