diff options
Diffstat (limited to 'demos/northwind-db/protected/database/Order.php')
-rw-r--r-- | demos/northwind-db/protected/database/Order.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/northwind-db/protected/database/Order.php b/demos/northwind-db/protected/database/Order.php index fa865e61..228fb2b5 100644 --- a/demos/northwind-db/protected/database/Order.php +++ b/demos/northwind-db/protected/database/Order.php @@ -26,7 +26,7 @@ class Order extends TActiveRecord public $Shipper;
public $Employee;
- protected static $RELATIONS = array
+ public static $RELATIONS = array
(
'OrderDetails' => array(self::HAS_MANY, 'OrderDetail'),
'Customer' => array(self::BELONGS_TO, 'Customer'),
|