98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
12 lines
512 B
Ruby
12 lines
512 B
Ruby
# rubocop:disable all
|
|
class LimitsToMysql < ActiveRecord::Migration
|
|
def up
|
|
return unless ActiveRecord::Base.configurations[Rails.env]['adapter'] =~ /^mysql/
|
|
|
|
change_column :merge_request_diffs, :st_commits, :text, limit: 2147483647
|
|
change_column :merge_request_diffs, :st_diffs, :text, limit: 2147483647
|
|
change_column :snippets, :content, :text, limit: 2147483647
|
|
change_column :notes, :st_diff, :text, limit: 2147483647
|
|
change_column :events, :data, :text, limit: 2147483647
|
|
end
|
|
end
|