diff --git a/db/docs/batched_background_migrations/backfill_dast_profiles_tags_project_id.yml b/db/docs/batched_background_migrations/backfill_dast_profiles_tags_project_id.yml
index d8a157113870440edcb85012df2ca9d201e6be83..597d94b55774c869b031fab46dcb72c89611d881 100644
--- a/db/docs/batched_background_migrations/backfill_dast_profiles_tags_project_id.yml
+++ b/db/docs/batched_background_migrations/backfill_dast_profiles_tags_project_id.yml
@@ -5,4 +5,4 @@ feature_category: dynamic_application_security_testing
 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/155285
 milestone: '17.1'
 queued_migration_version: 20240604145223
-finalized_by: # version of the migration that finalized this BBM
+finalized_by: '20241103232239'
diff --git a/db/post_migrate/20241103232239_finalize_backfill_dast_profiles_tags_project_id.rb b/db/post_migrate/20241103232239_finalize_backfill_dast_profiles_tags_project_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..8261d232302da0de7e4e858430f30c0f449ffa6a
--- /dev/null
+++ b/db/post_migrate/20241103232239_finalize_backfill_dast_profiles_tags_project_id.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+class FinalizeBackfillDastProfilesTagsProjectId < Gitlab::Database::Migration[2.2]
+  milestone '17.6'
+
+  disable_ddl_transaction!
+
+  restrict_gitlab_migration gitlab_schema: :gitlab_main_cell
+
+  def up
+    ensure_batched_background_migration_is_finished(
+      job_class_name: 'BackfillDastProfilesTagsProjectId',
+      table_name: :dast_profiles_tags,
+      column_name: :id,
+      job_arguments: [:project_id, :dast_profiles, :project_id, :dast_profile_id],
+      finalize: true
+    )
+  end
+
+  def down; end
+end
diff --git a/db/schema_migrations/20241103232239 b/db/schema_migrations/20241103232239
new file mode 100644
index 0000000000000000000000000000000000000000..a59c1b746d021386c53c9681a8770fb49310d65d
--- /dev/null
+++ b/db/schema_migrations/20241103232239
@@ -0,0 +1 @@
+79a80e3eebb1938c3ff27cc4388c2a4af31f289a7baa89333109a339385c7f16
\ No newline at end of file