Remove unnecessary semicolons

I could not help myself
This commit is contained in:
Jacob Vosmaer 2015-04-14 15:45:15 +02:00
parent 41a1cb88f4
commit 0b2670f82f

View file

@ -33,10 +33,10 @@ class FixIdentities < ActiveRecord::Migration
execute delete_statement
# Update legacy identities
execute "UPDATE identities SET provider = '#{new_provider}' WHERE provider = 'ldap';"
execute "UPDATE identities SET provider = '#{new_provider}' WHERE provider = 'ldap'"
if table_exists?('ldap_group_links')
execute "UPDATE ldap_group_links SET provider = '#{new_provider}' WHERE provider IS NULL OR provider = 'ldap';"
execute "UPDATE ldap_group_links SET provider = '#{new_provider}' WHERE provider IS NULL OR provider = 'ldap'"
end
end