summaryrefslogtreecommitdiffstats
path: root/db/migrate/021_add_tracker_position.rb
blob: 5fa8a3185ff05a24e5aafb03cf1a2daf1508ef9a (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.all.each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
  end

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