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: df1b1c793752b9604e02c015cf96efb0e89bce57 (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/PreventStrings
  end
end