##// END OF EJS Templates
Added test coverage for Redmine::Plugin.add_hook
Added test coverage for Redmine::Plugin.add_hook

File last commit:

r1175:b0754ca720f6
r1708:99ea01ec936a plugin-hooks
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
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 class ChangeProjectsDescriptionToText < ActiveRecord::Migration
def self.up
Jean-Philippe Lang
Fixes migration 87 error when running MySQL with STRICT_TRANS_TABLES on (#771)....
r1175 change_column :projects, :description, :text, :null => true, :default => nil
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 end
def self.down
end
end