Skip to content

Commit

Permalink
handle correctly issue #1320 (#1322)
Browse files Browse the repository at this point in the history
(cherry picked from commit a395b39)
  • Loading branch information
syjer authored and cbellone committed Jan 20, 2024
1 parent 16cfb88 commit 350d7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/alfio/repository/EventDeleterRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public interface EventDeleterRepository {
int deleteSubscriptionLinks(@Bind("eventId") int eventId);

@Deprecated
@Query("delete from ticket_field_value where ticket_field_configuration_id_fk in (select id from ticket_field_configuration where event_id_fk = :eventId and context = 'ATTENDEE')")
@Query("delete from ticket_field_value where ticket_field_configuration_id_fk in (select id from ticket_field_configuration where event_id_fk = :eventId)")
int deleteLegacyTicketFieldValue(@Bind("eventId") int eventId);

@Deprecated
Expand Down

0 comments on commit 350d7c2

Please sign in to comment.