2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2014-04-15 10:26:15 -04:00
|
|
|
class LimitsToMysql < ActiveRecord::Migration
|
|
|
|
def up
|
2014-04-16 05:26:02 -04:00
|
|
|
return unless ActiveRecord::Base.configurations[Rails.env]['adapter'] =~ /^mysql/
|
2014-04-15 10:26:15 -04:00
|
|
|
|
2017-11-21 11:58:08 -05:00
|
|
|
# These columns were removed in 10.3, but this is called from two places:
|
|
|
|
# 1. A migration run after they were added, but before they were removed.
|
|
|
|
# 2. A rake task which can be run at any time.
|
|
|
|
#
|
|
|
|
# Because of item 2, we need these checks.
|
|
|
|
if column_exists?(:merge_request_diffs, :st_commits)
|
|
|
|
change_column :merge_request_diffs, :st_commits, :text, limit: 2147483647
|
|
|
|
end
|
|
|
|
|
|
|
|
if column_exists?(:merge_request_diffs, :st_diffs)
|
|
|
|
change_column :merge_request_diffs, :st_diffs, :text, limit: 2147483647
|
|
|
|
end
|
|
|
|
|
2014-04-15 10:26:15 -04:00
|
|
|
change_column :snippets, :content, :text, limit: 2147483647
|
|
|
|
change_column :notes, :st_diff, :text, limit: 2147483647
|
|
|
|
end
|
|
|
|
end
|