##// END OF EJS Templates
Implementing more unit tests for the plugin hooks
Implementing more unit tests for the plugin hooks

File last commit:

r225:879a614cdec8
r1705:e14b86453e61
Show More
023_add_tracker_is_in_roadmap.rb
9 lines | 230 B | text/x-ruby | RubyLexer
/ db / migrate / 023_add_tracker_is_in_roadmap.rb
class AddTrackerIsInRoadmap < ActiveRecord::Migration
def self.up
add_column :trackers, :is_in_roadmap, :boolean, :default => true, :null => false
end
def self.down
remove_column :trackers, :is_in_roadmap
end
end