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 / 0d / 0de0220c6abf526fd90b0775dd5b7d3c897e479b.svn-base @ 1298:4f746d8966dd

History | View | Annotate | Download (286 Bytes)

1 1295:622f24f53b42 Chris
class AddTrackerPosition < ActiveRecord::Migration
2
  def self.up
3
    add_column :trackers, :position, :integer, :default => 1
4
    Tracker.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