removeTester

@Modifying(clearAutomatically = true)
@Query(value = ""DELETE FROM " + PROJECT_TESTERS_TABLE + " WHERE " + PROJECT_IDENTIFIER_KEY + "=:" + PROJECT_IDENTIFIER_KEY + " AND " + MEMBER_IDENTIFIER_KEY + "=:" + MEMBER_IDENTIFIER_KEY", nativeQuery = true)
abstract fun removeTester(@Param(value = "project_id") projectId: String, @Param(value = "member_id") memberId: String)

Method to execute the query to remove a tester from an existing Project

Parameters

projectId

: the identifier of the project

memberId

: the identifier of the tester to remove