diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-12-04 12:09:25 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-12-08 00:27:39 +0100 |
commit | 0a5e742023c7ee832c2b52de93e1c27cf76c34f4 (patch) | |
tree | c40f1635946bcd16d332bc29e7174b06e080fc28 /server/sonar-web/src/main | |
parent | e59a159c447807f3793bc093c73b6307c4a26251 (diff) | |
download | sonarqube-0a5e742023c7ee832c2b52de93e1c27cf76c34f4.tar.gz sonarqube-0a5e742023c7ee832c2b52de93e1c27cf76c34f4.zip |
SONAR-6900 New WS api/qualitygates/project_status quality gate details of an analysis
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb index b2e67caa934..9f41f740617 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb @@ -25,7 +25,7 @@ class AddCeActivitySnapshotId < ActiveRecord::Migration def self.up - add_column 'ce_activity', :snapshot_id, :integer, :null => true + add_column 'ce_activity', :snapshot_id, :big_integer, :null => true end end |