##// END OF EJS Templates
Implementing more unit tests for the plugin hooks
Implementing more unit tests for the plugin hooks

File last commit:

r851:8f7f305f7cf8
r1705:e14b86453e61
Show More
021_add_tracker_position.rb
10 lines | 293 B | text/x-ruby | RubyLexer
/ db / migrate / 021_add_tracker_position.rb
class AddTrackerPosition < ActiveRecord::Migration
def self.up
add_column :trackers, :position, :integer, :default => 1
Tracker.find(:all).each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
end
def self.down
remove_column :trackers, :position
end
end