mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
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.
13 lines
512 B
Ruby
13 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
|