]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7073 fix nullability of SNAPSHOTS.SCOPE/QUALIFIER
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 25 Nov 2015 13:06:18 +0000 (14:06 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 25 Nov 2015 13:06:18 +0000 (14:06 +0100)
as it was done previously (for bad reasons)

server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1001_fix_size_of_snapshots_qualifier.rb
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1002_fix_size_of_snapshots_scope.rb

index 3d080387347ea13adfca56ec605d4318ede933d3..0726277bfa5de86640ff61e783b4fe8c8d413dc2 100644 (file)
@@ -26,7 +26,7 @@ class FixSizeOfSnapshotsQualifier < ActiveRecord::Migration
 
   def self.up
     remove_index :snapshots, :name => 'snapshots_qualifier'
-    change_column('snapshots', 'qualifier', :string, :limit => 10, :null => false)
+    change_column('snapshots', 'qualifier', :string, :limit => 10, :null => true)
     add_index :snapshots, :qualifier, :name => 'snapshots_qualifier'
   end
 
index 8e769893ff36ce064d384dc186c6a2f06f124e8e..0f3ae67903c8185c125bfdc6a09e54953b24f711 100644 (file)
@@ -25,7 +25,7 @@
 class FixSizeOfSnapshotsScope < ActiveRecord::Migration
 
   def self.up
-    change_column('snapshots', 'scope', :string, :limit => 3, :null => false)
+    change_column('snapshots', 'scope', :string, :limit => 3, :null => true)
   end
 
 end