##// END OF EJS Templates
remove trailing white space from test/fixtures/workflows.yml...
remove trailing white space from test/fixtures/workflows.yml git-svn-id: http://svn.redmine.org/redmine/trunk@16339 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15523:daf1342c047d
r15957:7816a4025a03 master
Show More
20161010081600_change_journals_notes_limit.rb
12 lines | 271 B | text/x-ruby | RubyLexer
/ db / migrate / 20161010081600_change_journals_notes_limit.rb
class ChangeJournalsNotesLimit < ActiveRecord::Migration
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
max_size = 16.megabytes
change_column :journals, :notes, :text, :limit => max_size
end
end
def down
# no-op
end
end