mirror of
https://github.com/meineerde/redmine.git
synced 2025-10-17 17:01:01 +00:00
Raises length of settings value for MySQL (#34218).
Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@23196 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
0e877c081f
commit
5802c68ffe
12
db/migrate/20241103150135_change_settings_value_limit.rb
Normal file
12
db/migrate/20241103150135_change_settings_value_limit.rb
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
class ChangeSettingsValueLimit < ActiveRecord::Migration[7.2]
|
||||||
|
def up
|
||||||
|
if Redmine::Database.mysql?
|
||||||
|
max_size = 16.megabytes
|
||||||
|
change_column :settings, :value, :text, :limit => max_size
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
# no-op
|
||||||
|
end
|
||||||
|
end
|
||||||
Loading…
x
Reference in New Issue
Block a user