aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src
diff options
context:
space:
mode:
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2015-03-26 14:24:02 +0100
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2015-03-26 14:51:08 +0100
commit6eb670a7d276a1a0f046a5f1925f29e1727eec23 (patch)
treece4d43c6a71963eafdb8f68bf4d057be6f36d0dc /server/sonar-web/src
parentc361f824ba490fe69138205c56e2679800497405 (diff)
downloadsonarqube-6eb670a7d276a1a0f046a5f1925f29e1727eec23.tar.gz
sonarqube-6eb670a7d276a1a0f046a5f1925f29e1727eec23.zip
SONAR-6325 Apply feedback from PR
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/db/migrate/906_create_project_profiles.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/906_create_project_profiles.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/906_create_project_profiles.rb
index ec2766c2307..6dbec9f9a3c 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/906_create_project_profiles.rb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/906_create_project_profiles.rb
@@ -24,12 +24,12 @@
class CreateProjectProfiles < ActiveRecord::Migration
def self.up
- create_table :project_profiles do |t|
+ create_table :project_qprofiles do |t|
t.column :project_uuid, :string, :limit => 50, :null => false
t.column :profile_key, :string, :limit => 255, :null => false
end
- add_index 'project_profiles', ['project_uuid', 'profile_key'], :unique => true, :name => 'uniq_project_profiles'
+ add_index 'project_qprofiles', ['project_uuid', 'profile_key'], :unique => true, :name => 'uniq_project_qprofiles'
end
end