Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
parent
488e6e1ad9
commit
1342204777
|
|
@ -5,4 +5,4 @@ feature_category: team_planning
|
|||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/172071
|
||||
milestone: '17.6'
|
||||
queued_migration_version: 20241108124324
|
||||
finalized_by: # version of the migration that finalized this BBM
|
||||
finalized_by: 20250113132806
|
||||
|
|
|
|||
|
|
@ -5,4 +5,4 @@ feature_category: team_planning
|
|||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/172071
|
||||
milestone: '17.6'
|
||||
queued_migration_version: 20241108105112
|
||||
finalized_by: # version of the migration that finalized this BBM
|
||||
finalized_by: 20250113132735
|
||||
|
|
|
|||
|
|
@ -5,4 +5,4 @@ feature_category: team_planning
|
|||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/172071
|
||||
milestone: '17.6'
|
||||
queued_migration_version: 20241108111720
|
||||
finalized_by: # version of the migration that finalized this BBM
|
||||
finalized_by: 20250113132823
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class FinalizeRequeueBackfillRelatedEpicLinksToIssueLinks < Gitlab::Database::Migration[2.2]
|
||||
MIGRATION = 'RequeueBackfillRelatedEpicLinksToIssueLinks'
|
||||
disable_ddl_transaction!
|
||||
|
||||
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
||||
milestone '17.9'
|
||||
|
||||
def up
|
||||
ensure_batched_background_migration_is_finished(
|
||||
job_class_name: MIGRATION,
|
||||
table_name: :related_epic_links,
|
||||
column_name: :id,
|
||||
job_arguments: [],
|
||||
finalize: true
|
||||
)
|
||||
end
|
||||
|
||||
def down
|
||||
# no-op
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class FinalizeRequeueBackfillEpicIssuesIntoWorkItemParentLinks < Gitlab::Database::Migration[2.2]
|
||||
MIGRATION = 'RequeueBackfillEpicIssuesIntoWorkItemParentLinks'
|
||||
disable_ddl_transaction!
|
||||
|
||||
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
||||
milestone '17.9'
|
||||
|
||||
def up
|
||||
ensure_batched_background_migration_is_finished(
|
||||
job_class_name: MIGRATION,
|
||||
table_name: :epic_issues,
|
||||
column_name: :id,
|
||||
job_arguments: [nil],
|
||||
finalize: true
|
||||
)
|
||||
end
|
||||
|
||||
def down
|
||||
# no-op
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class FinalizeRequeueBackfillWorkItemHierarchyForEpics < Gitlab::Database::Migration[2.2]
|
||||
MIGRATION = 'RequeueBackfillWorkItemHierarchyForEpics'
|
||||
disable_ddl_transaction!
|
||||
|
||||
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
||||
milestone '17.9'
|
||||
|
||||
def up
|
||||
ensure_batched_background_migration_is_finished(
|
||||
job_class_name: MIGRATION,
|
||||
table_name: :epics,
|
||||
column_name: :id,
|
||||
job_arguments: [],
|
||||
finalize: true
|
||||
)
|
||||
end
|
||||
|
||||
def down
|
||||
# no-op
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1 @@
|
|||
95b807c3151a40eb709acd8858bafb4fb0923edda0fa3d6222cbfbe453f2d6f1
|
||||
|
|
@ -0,0 +1 @@
|
|||
600d55eaba1b1e34606912b4bdb80a14fd983dae5a8ddfb33ea53e5a1b128cf6
|
||||
|
|
@ -0,0 +1 @@
|
|||
1f8d332410c464cf7dfd1e9f2f12347e3b3a74853ae2f20fa462583c891809cd
|
||||
Loading…
Reference in New Issue