]> source.dussan.org Git - sonarqube.git/commitdiff
Minor refactoring in 713_create_file_sources.rb
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 4 Dec 2014 16:41:10 +0000 (17:41 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 4 Dec 2014 22:35:08 +0000 (23:35 +0100)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/713_create_file_sources.rb

index ae7e45aecf961521e641e921045200f8711a11da..1820e207299f31c726b6bad173a1f9b2008da062 100644 (file)
@@ -35,17 +35,13 @@ class CreateFileSources < ActiveRecord::Migration
     end
 
     if dialect()=='mysql'
-      ActiveRecord::Base.connection.execute("alter table file_sources modify data longtext")
+      ActiveRecord::Base.connection.execute('alter table file_sources modify data longtext')
     end
 
-    add_index "file_sources", "file_uuid", :unique => true, :name => "file_sources_file_uuid_uniq"
+    add_index 'file_sources', 'file_uuid', :unique => true, :name => 'file_sources_file_uuid'
 
-    ["project_uuid", "updated_at"].each do |column|
-      begin
-        add_index "file_sources", column, :name => "file_sources_" + column
-      rescue
-        # ignore
-      end
+    ['project_uuid', 'updated_at'].each do |column|
+      add_index 'file_sources', column, :name => 'file_sources_' + column
     end
 
   end