summaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-09-13 10:26:56 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-09-13 10:30:47 +0200
commit80a46f7cb40aabba65d62bf57cbd20a292308aa2 (patch)
tree765065aae691a3c41b3409982bd1b173ceb80a37 /server/sonar-web
parent2a9676c06cd3201923606043af2e5ba23c923e74 (diff)
downloadsonarqube-80a46f7cb40aabba65d62bf57cbd20a292308aa2.tar.gz
sonarqube-80a46f7cb40aabba65d62bf57cbd20a292308aa2.zip
SONAR-7851 fix size of column qprofile_changes.qprofile_key
Diffstat (limited to 'server/sonar-web')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb
index 1d9a88dd95e..779def82761 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb
@@ -26,7 +26,7 @@ class CreateTableQprofileChanges < ActiveRecord::Migration
def self.up
create_table 'qprofile_changes', :id => false do |t|
t.column 'kee', :string, :limit => 40, :null => false
- t.column 'qprofile_key', :string, :limit => 40, :null => false
+ t.column 'qprofile_key', :string, :limit => 255, :null => false
t.column 'change_type', :string, :limit => 20, :null => false
t.column 'created_at', :big_integer, :null => false
t.column 'user_login', :string, :limit => 255, :null => true