debian-mirror-gitlab/db/migrate/20200304124406_add_unlock_membership_to_ldap_of_groups.rb
2021-03-11 19:13:27 +05:30

20 lines
450 B
Ruby

# 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) # rubocop:disable Migration/AddColumnsToWideTables
end
end
def down
with_lock_retries do
remove_column :namespaces, :unlock_membership_to_ldap
end
end
end