Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ out/
### VS Code ###
.vscode/

### Mac OS ###
.DS_Store

docker-compose/.env
docker-compose/.env.local
docker-compose/.env.prod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void batchDeleteAllWithExamApplications(List<PaymentJpaEntity> entities)
.map(PaymentJpaEntity::getId)
.toList();

String sql = "DELETE FROM payment WHERE id IN (:ids)";
String sql = "DELETE FROM payment WHERE payment_id IN (:ids)";
namedParameterJdbcTemplate.update(sql, new MapSqlParameterSource("ids", ids));
}
}