Browse Source

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
tags/3.4.0
Jean-Philippe Lang 7 years ago
parent
commit
69ba7667e1
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      db/migrate/20170320051650_change_repositories_extra_info_limit.rb

+ 12
- 0
db/migrate/20170320051650_change_repositories_extra_info_limit.rb 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

Loading…
Cancel
Save