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

20190621151636_add_merge_request_rebase_jid.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c1081732e8d77a8b99a4d301de12aa26adc53b9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddMergeRequestRebaseJid < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  def change
    add_column :merge_requests, :rebase_jid, :string # rubocop:disable Migration/AddLimitToStringColumns
  end
end