]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7851 fix size of column qprofile_changes.qprofile_key
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 13 Sep 2016 08:26:56 +0000 (10:26 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 13 Sep 2016 08:30:47 +0000 (10:30 +0200)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1316_create_table_qprofile_changes.rb

index 1d9a88dd95ece5b6a577e3cb81adddc8b793be61..779def82761fea77b01873d255111be780e5e073 100644 (file)
@@ -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