You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently PointOfInterest has a ManyToOne relationship with Route (changed from ManyToMany in migration Version20241209094309). To allow reuse of POIs across multiple routes, this would need reverting to ManyToMany with a junction table, plus admin UI changes.
Considerations
This is a significant change — needs discussion on whether it's still desired
Requires a new Doctrine migration to revert the relationship
Admin UI needs to handle the many-to-many association
Description
Currently PointOfInterest has a ManyToOne relationship with Route (changed from ManyToMany in migration
Version20241209094309). To allow reuse of POIs across multiple routes, this would need reverting to ManyToMany with a junction table, plus admin UI changes.Considerations
Part of #35