4ebbfe5d3e
The st_commits and st_diffs columns on merge_request_diffs historically held the YAML-serialised data for a merge request diff, in a variety of formats. Since 9.5, these have been migrated in the background to two new tables: merge_request_diff_commits and merge_request_diff_files. That has the advantage that we can actually query the data (for instance, to find out how many commits we've stored), and that it can't be in a variety of formats, but must match the new schema. This is the final step of that journey, where we drop those columns and remove all references to them. This is a breaking change to the importer, because we can no longer import diffs created in the old format, and we cannot guarantee the export will be in the new format unless it was generated after this commit.
22 lines
847 B
Ruby
22 lines
847 B
Ruby
# rubocop:disable all
|
|
class LimitsToMysql < ActiveRecord::Migration
|
|
def up
|
|
return unless ActiveRecord::Base.configurations[Rails.env]['adapter'] =~ /^mysql/
|
|
|
|
# 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
|
|
|
|
change_column :snippets, :content, :text, limit: 2147483647
|
|
change_column :notes, :st_diff, :text, limit: 2147483647
|
|
end
|
|
end
|