##// END OF EJS Templates
Missing fixtures....
Missing fixtures. git-svn-id: http://svn.redmine.org/redmine/trunk@15907 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15523:daf1342c047d
r15525:def2359ccece
Show More
20161010081301_change_issues_description_limit.rb
12 lines | 279 B | text/x-ruby | RubyLexer
/ db / migrate / 20161010081301_change_issues_description_limit.rb
class ChangeIssuesDescriptionLimit < ActiveRecord::Migration
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
max_size = 16.megabytes
change_column :issues, :description, :text, :limit => max_size
end
end
def down
# no-op
end
end