blob: 1ff33bf7c263779f334c0d27d1d4a7ce643e4b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class ChangeJournalsNotesLimit < ActiveRecord::Migration[4.2]
def up
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :journals, :notes, :text, :limit => max_size
end
end
def down
# no-op
end
end
|