mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-21 23:37:47 +00:00
12 lines
354 B
Ruby
12 lines
354 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddImportedToMergeRequests < Gitlab::Database::Migration[2.2]
|
|
milestone '17.0'
|
|
|
|
def change
|
|
# rubocop:disable Migration/PreventAddingColumns -- Legacy migration
|
|
add_column :merge_requests, :imported, :integer, default: 0, null: false, limit: 2
|
|
# rubocop:enable Migration/PreventAddingColumns
|
|
end
|
|
end
|