Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2015-04-14 16:45:15 +0300
committerJacob Vosmaer <contact@jacobvosmaer.nl>2015-04-14 16:45:15 +0300
commit0b2670f82fb755318d7ce2f81bae85071ec4c707 (patch)
tree41166b779a6885f8aea763ab1f6ec7a77b1c6844 /db/migrate
parent41a1cb88f4fec3d9598fca50c14407c45e5c8ce7 (diff)
Remove unnecessary semicolons
I could not help myself
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20150411000035_fix_identities.rb4
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