Welcome to mirror list, hosted at ThFree Co, Russian Federation.

limits_to_mysql.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f8d8f2741076f5b52a434ef4fb8d723a0fb328b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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