Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -1,9 +1,9 @@
|
|||
class ChangeWikiContentsTextLimit < ActiveRecord::Migration
|
||||
class ChangeWikiContentsTextLimit < ActiveRecord::Migration[4.2]
|
||||
def self.up
|
||||
# Migrates MySQL databases only
|
||||
# Postgres would raise an error (see http://dev.rubyonrails.org/ticket/3818)
|
||||
# Not fixed in Rails 2.3.5
|
||||
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
|
||||
if Redmine::Database.mysql?
|
||||
max_size = 16.megabytes
|
||||
change_column :wiki_contents, :text, :text, :limit => max_size
|
||||
change_column :wiki_content_versions, :data, :binary, :limit => max_size
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue