summaryrefslogtreecommitdiffstats
path: root/db/migrate/021_add_tracker_position.rb
blob: 30a5d771c7e01b05b5e5bd2876a027f95354461b (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, :null => false
    Tracker.find(:all).each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
  end

  def self.down
    remove_column :trackers, :position
  end
end