mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 03:15:57 +01:00
11 lines
309 B
Ruby
11 lines
309 B
Ruby
|
|
class AddTrackerPosition < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_column :trackers, :position, :integer, :default => 1, :null => false
|
||
|
|
Tracker.find(:all).each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :trackers, :position
|
||
|
|
end
|
||
|
|
end
|