]> source.dussan.org Git - redmine.git/commitdiff
First db:migrate fails with SQLServer (undefined method type for nil class in sqlserv...
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Nov 2014 17:38:38 +0000 (17:38 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Nov 2014 17:38:38 +0000 (17:38 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13645 e93f8b46-1217-0410-a6f0-8f06a7374b81

db/migrate/076_allow_null_position.rb

index ece0370dbe691b4a461f189be26fda8d8467f0c5..afb93810aaabf1cd23edfb0f78dd5bc9d30ecc41 100644 (file)
@@ -1,5 +1,7 @@
 class AllowNullPosition < ActiveRecord::Migration
   def self.up
+    Enumeration.reset_column_information
+
     # removes the 'not null' constraint on position fields
     change_column :issue_statuses, :position, :integer, :default => 1, :null => true
     change_column :roles, :position, :integer, :default => 1, :null => true