Change extra_info to long text (#14626).

Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@16446 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2017-04-03 05:32:48 +00:00
parent 6139e0033a
commit 69ba7667e1

View File

@@ -0,0 +1,12 @@
class ChangeRepositoriesExtraInfoLimit < ActiveRecord::Migration
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
max_size = 16.megabytes
change_column :repositories, :extra_info, :text, :limit => max_size
end
end
def down
# no-op
end
end