##// END OF EJS Templates
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.

File last commit:

r1175:b0754ca720f6
r1706:ca8fb4026e0e
Show More
087_change_projects_description_to_text.rb
8 lines | 192 B | text/x-ruby | RubyLexer
/ db / migrate / 087_change_projects_description_to_text.rb
class ChangeProjectsDescriptionToText < ActiveRecord::Migration
def self.up
change_column :projects, :description, :text, :null => true, :default => nil
end
def self.down
end
end