From: Simon Brandhof Date: Tue, 13 Sep 2016 08:26:56 +0000 (+0200) Subject: SONAR-7851 fix size of column qprofile_changes.qprofile_key X-Git-Tag: 6.1-RC1~113 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=80a46f7cb40aabba65d62bf57cbd20a292308aa2;p=sonarqube.git SONAR-7851 fix size of column qprofile_changes.qprofile_key --- 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