redmine/db/migrate/20161010081600_change_journals_notes_limit.rb
2016-10-10 08:22:49 +00:00

13 lines
271 B
Ruby

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