From: Fabrice Bellingard Date: Tue, 19 Apr 2011 08:10:16 +0000 (+0200) Subject: [SONAR-1973] Increase table primary keys X-Git-Tag: 2.8~170 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8af4e04900a8c355ac98c6328f278ee689d36cb0;p=sonarqube.git [SONAR-1973] Increase table primary keys --- diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/191_create_review.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/191_create_review.rb index a1abf37a7ac..f67cadcf715 100644 --- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/191_create_review.rb +++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/191_create_review.rb @@ -46,6 +46,9 @@ class CreateReview < ActiveRecord::Migration t.column 'review_text', :text, :null => true end + alter_to_big_primary_key('reviews') + alter_to_big_primary_key('review_comments') + end end