diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-04-14 15:45:15 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-04-14 15:45:15 +0200 |
commit | 0b2670f82fb755318d7ce2f81bae85071ec4c707 (patch) | |
tree | 41166b779a6885f8aea763ab1f6ec7a77b1c6844 /db | |
parent | 41a1cb88f4fec3d9598fca50c14407c45e5c8ce7 (diff) | |
download | gitlab-ce-0b2670f82fb755318d7ce2f81bae85071ec4c707.tar.gz |
Remove unnecessary semicolons
I could not help myself
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20150411000035_fix_identities.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20150411000035_fix_identities.rb b/db/migrate/20150411000035_fix_identities.rb index ebbb9f34f4b..d9051f9fffd 100644 --- a/db/migrate/20150411000035_fix_identities.rb +++ b/db/migrate/20150411000035_fix_identities.rb @@ -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 |