aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/db/migrate/708_add_project_uuid_index.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/708_add_project_uuid_index.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/708_add_project_uuid_index.rb
index 5d81bd096c6..d4ba5725fa2 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/708_add_project_uuid_index.rb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/708_add_project_uuid_index.rb
@@ -25,6 +25,7 @@
class AddProjectUuidIndex < ActiveRecord::Migration
def self.up
add_index 'projects', 'uuid', :name => 'projects_uuid', :unique => true
+ add_index 'projects', 'project_uuid', :name => 'projects_project_uuid'
end
end