Browse Source

Use Redmine::Database.mysql? instead of a regular expression (#31555).

Patch by Pavel Rosický.


git-svn-id: http://svn.redmine.org/redmine/trunk@18256 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
d16e36028f

+ 1
- 1
db/migrate/20091227112908_change_wiki_contents_text_limit.rb View File

@@ -3,7 +3,7 @@ class ChangeWikiContentsTextLimit < ActiveRecord::Migration[4.2]
# 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

+ 1
- 1
db/migrate/20140228130325_change_changesets_comments_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeChangesetsCommentsLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :changesets, :comments, :text, :limit => max_size
end

+ 1
- 1
db/migrate/20161010081301_change_issues_description_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeIssuesDescriptionLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :issues, :description, :text, :limit => max_size
end

+ 1
- 1
db/migrate/20161010081528_change_journal_details_value_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeJournalDetailsValueLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :journal_details, :value, :text, :limit => max_size
change_column :journal_details, :old_value, :text, :limit => max_size

+ 1
- 1
db/migrate/20161010081600_change_journals_notes_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeJournalsNotesLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :journals, :notes, :text, :limit => max_size
end

+ 1
- 1
db/migrate/20170320051650_change_repositories_extra_info_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeRepositoriesExtraInfoLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :repositories, :extra_info, :text, :limit => max_size
end

+ 1
- 1
db/migrate/20190315094151_change_custom_values_value_limit.rb View File

@@ -1,6 +1,6 @@
class ChangeCustomValuesValueLimit < ActiveRecord::Migration[5.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
if Redmine::Database.mysql?
max_size = 16.megabytes
change_column :custom_values, :value, :text, :limit => max_size
end

Loading…
Cancel
Save