mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
10 lines
235 B
Ruby
10 lines
235 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddPartitionIdToSourcesProjects < Gitlab::Database::Migration[2.2]
|
|
milestone '17.1'
|
|
|
|
def change
|
|
add_column(:ci_sources_projects, :partition_id, :bigint, default: 100, null: false)
|
|
end
|
|
end
|