##// END OF EJS Templates
tagged version 3.3.1...
tagged version 3.3.1 git-svn-id: http://svn.redmine.org/redmine/tags/3.3.1@15904 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13263:191a4a61f151
r15522:93cd8829a79f 3.3.1
Show More
076_allow_null_position.rb
16 lines | 618 B | text/x-ruby | RubyLexer
/ db / migrate / 076_allow_null_position.rb
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
change_column :trackers, :position, :integer, :default => 1, :null => true
change_column :boards, :position, :integer, :default => 1, :null => true
change_column :enumerations, :position, :integer, :default => 1, :null => true
end
def self.down
# nothing to do
end
end