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 / db / migrate / 021_add_tracker_position.rb @ 441:cbce1fd3b1b7

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