##// END OF EJS Templates
More unit tests to cover hook_registered?
More unit tests to cover hook_registered?

File last commit:

r546:413247ee5b16
r1707:e87140a719c2
Show More
051_add_project_status.rb
9 lines | 208 B | text/x-ruby | RubyLexer
/ db / migrate / 051_add_project_status.rb
Jean-Philippe Lang
Added the ability to archive projects:...
r546 class AddProjectStatus < ActiveRecord::Migration
def self.up
add_column :projects, :status, :integer, :default => 1, :null => false
end
def self.down
remove_column :projects, :status
end
end