debian-mirror-gitlab/db/migrate/20200304124406_add_unlock_membership_to_ldap_of_groups.rb
2020-04-22 19:07:51 +05:30

20 lines
399 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)
end
end
def down
with_lock_retries do
remove_column :namespaces, :unlock_membership_to_ldap
end
end
end