Check for table instead of class
This commit is contained in:
parent
f64db1fab9
commit
04f05ac1fb
1 changed files with 2 additions and 2 deletions
|
@ -11,13 +11,13 @@ class FixIdentities < ActiveRecord::Migration
|
|||
# the first LDAP server specified in gitlab.yml / gitlab.rb.
|
||||
new_provider = Gitlab.config.ldap.servers.first.last['provider_name']
|
||||
|
||||
# Delete duplicate identities
|
||||
# Delete duplicate identities
|
||||
execute "DELETE FROM identities WHERE provider = 'ldap' AND user_id IN (SELECT user_id FROM identities WHERE provider = '#{new_provider}')"
|
||||
|
||||
# Update legacy identities
|
||||
execute "UPDATE identities SET provider = '#{new_provider}' WHERE provider = 'ldap';"
|
||||
|
||||
if defined?(LdapGroupLink)
|
||||
if table_exists?('ldap_group_links')
|
||||
execute "UPDATE ldap_group_links SET provider = '#{new_provider}' WHERE provider IS NULL;"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue