summaryrefslogtreecommitdiffstats
path: root/db/migrate/021_add_tracker_position.rb
blob: ef9775620e675ac8a809072a30aca816fe66e0d0 (plain)
1
2
3
4
5
6
7
8
9
10
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