9 lines
232 B
Ruby
9 lines
232 B
Ruby
# 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
|