DB migration for templating description - Rodrigo Panachi, 2009-03-08 18:21
class AddTrackersTemplate < ActiveRecord::Migration
def self.up
add_column :trackers, :template, :string, :null => true
end
def self.down
remove_column :trackers, :template