mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-21 23:43:41 +00:00
12 lines
352 B
Ruby
12 lines
352 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddRetargetedToMergeRequests < Gitlab::Database::Migration[2.2]
|
|
milestone '17.2'
|
|
|
|
def change
|
|
# rubocop:disable Migration/PreventAddingColumns -- Legacy migration
|
|
add_column :merge_requests, :retargeted, :boolean, default: false, null: false
|
|
# rubocop:enable Migration/PreventAddingColumns
|
|
end
|
|
end
|