diff options
-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 |