Commit 8476d171 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Merge branch 'ldap_migration' of dev.gitlab.org:gitlab/gitlabhq into ldap_migration

parents ec7a68a1 04f05ac1
...@@ -22,7 +22,7 @@ class FixIdentities < ActiveRecord::Migration ...@@ -22,7 +22,7 @@ class FixIdentities < ActiveRecord::Migration
# Update legacy identities # Update legacy identities
execute "UPDATE identities SET provider = '#{new_provider}' WHERE provider = 'ldap';" 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;" execute "UPDATE ldap_group_links SET provider = '#{new_provider}' WHERE provider IS NULL;"
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment