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