mirror of
https://github.com/redmine/redmine.git
synced 2026-03-04 11:31:31 +01:00
Removed 'not null' constraint on position fields.
Previous migrations updated for new sqlite databases. git-svn-id: http://redmine.rubyforge.org/svn/trunk@865 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
14
db/migrate/076_allow_null_position.rb
Normal file
14
db/migrate/076_allow_null_position.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
class AllowNullPosition < ActiveRecord::Migration
|
||||
def self.up
|
||||
# removes the 'not null' constraint on position fields
|
||||
change_column :issue_statuses, :position, :integer, :default => 1
|
||||
change_column :roles, :position, :integer, :default => 1
|
||||
change_column :trackers, :position, :integer, :default => 1
|
||||
change_column :boards, :position, :integer, :default => 1
|
||||
change_column :enumerations, :position, :integer, :default => 1
|
||||
end
|
||||
|
||||
def self.down
|
||||
# nothing to do
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user