diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-01 14:53:57 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-01 14:53:57 +0000 |
commit | 84d5dd9d058988d2ae665fef0fb11d6f2a52bb8b (patch) | |
tree | b2ad5076c27d9363525c4ecb681e56bd6b97b15e /sonar-server | |
parent | 4cc2bb2abb5c5975ec107f90140b2447e4ed12f5 (diff) | |
download | sonarqube-84d5dd9d058988d2ae665fef0fb11d6f2a52bb8b.tar.gz sonarqube-84d5dd9d058988d2ae665fef0fb11d6f2a52bb8b.zip |
SONAR-1643 increase the size of DASHBOARD.COLUMN_LAYOUT
Diffstat (limited to 'sonar-server')
-rwxr-xr-x | sonar-server/src/main/webapp/WEB-INF/db/migrate/151_create_dashboards.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/151_create_dashboards.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/151_create_dashboards.rb index 80af98ef785..ffaaecf0ea6 100755 --- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/151_create_dashboards.rb +++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/151_create_dashboards.rb @@ -33,7 +33,7 @@ class CreateDashboards < ActiveRecord::Migration t.column :user_id, :integer, :null => true t.column :name, :string, :null => true, :limit => 256 t.column :description, :string, :null => true, :limit => 1000 - t.column :column_layout, :string, :null => true, :limit => 10 + t.column :column_layout, :string, :null => true, :limit => 20 t.column :shared, :boolean, :null => true t.timestamps end |