# frozen_string_literal: true class FinalizeDeleteInvalidProtectedBranchPushAccessLevels < Gitlab::Database::Migration[2.2] milestone '16.8' MIGRATION = 'DeleteInvalidProtectedBranchPushAccessLevels' disable_ddl_transaction! restrict_gitlab_migration gitlab_schema: :gitlab_main def up ensure_batched_background_migration_is_finished( job_class_name: MIGRATION, table_name: :protected_branch_push_access_levels, column_name: :id, job_arguments: [], finalize: true ) end def down # no-op end end