1
0
mirror of synced 2024-12-13 06:46:03 +03:00

[2.0] DDC-336 DDC-337 - Commit missing file

This commit is contained in:
beberlei 2010-02-15 23:02:24 +00:00
parent 31b0705ed5
commit 6f6628c22a

View File

@ -22,13 +22,13 @@ class RoutingRoute
* joinColumns={@JoinColumn(name="route_id", referencedColumnName="id")},
* inverseJoinColumns={@JoinColumn(name="leg_id", referencedColumnName="id", unique=true)}
* )
* @OrderBy("%alias%.departureDate ASC")
* @OrderBy("departureDate ASC")
*/
public $legs;
/**
* @OneToMany(targetEntity="RoutingRouteBooking", mappedBy="route")
* @OrderBy("%alias%.passengerName ASC")
* @OrderBy("passengerName ASC")
*/
public $bookings = array();