debian-mirror-gitlab/db/migrate/20160823081327_change_merge_error_to_text.rb
2019-02-15 15:39:39 +05:30

11 lines
326 B
Ruby

class ChangeMergeErrorToText < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = true
DOWNTIME_REASON = 'This migration requires downtime because it alters a column from varchar(255) to text.'
def change
change_column :merge_requests, :merge_error, :text, limit: 65535
end
end