To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 6d / 6d9eab4fc3d69073fa19994d3c697b56874a4a4e.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (293 Bytes)

1
class AddTrackerPosition < ActiveRecord::Migration
2
  def self.up
3
    add_column :trackers, :position, :integer, :default => 1
4
    Tracker.find(:all).each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
5
  end
6

    
7
  def self.down
8
    remove_column :trackers, :position
9
  end
10
end