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 / 20120705074331_add_trackers_fields_bits.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (207 Bytes)

1
class AddTrackersFieldsBits < ActiveRecord::Migration
2
  def self.up
3
    add_column :trackers, :fields_bits, :integer, :default => 0
4
  end
5

    
6
  def self.down
7
    remove_column :trackers, :fields_bits
8
  end
9
end