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 @ 1298:4f746d8966dd

History | View | Annotate | Download (286 Bytes)

1 0:513646585e45 Chris
class AddTrackerPosition < ActiveRecord::Migration
2
  def self.up
3
    add_column :trackers, :position, :integer, :default => 1
4 1295:622f24f53b42 Chris
    Tracker.all.each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
5 0:513646585e45 Chris
  end
6
7
  def self.down
8
    remove_column :trackers, :position
9
  end
10
end