Prior to 7.2.0 the code to unset the most_recent column of old transitions when a new transition was created relied on transitions_for_parent, which would build the correct query in the case that the transition class was using single table inheritance.
However, after #399, the code no longer uses the parent association to create the query and the current custom query lacks this functionality that existed prior to 7.2.0.
This PR addresses this issue by adding an AND clause to the query to filter by transition type if the transition class contains an inheritance column.
Prior to 7.2.0 the code to unset the
most_recent
column of old transitions when a new transition was created relied ontransitions_for_parent
, which would build the correct query in the case that the transition class was using single table inheritance.However, after #399, the code no longer uses the parent association to create the query and the current custom query lacks this functionality that existed prior to 7.2.0.
This PR addresses this issue by adding an AND clause to the query to filter by transition type if the transition class contains an inheritance column.