/var/www/(Del)gepgroup.hk/php-activerecord/examples/orders/models/Payment.php


1
2
3
4
5
6
7
8
9
<?php
class Payment extends ActiveRecord\Model
{
    
// payment belongs to a person
    
static $belongs_to = array(
        array(
'person'),
        array(
'order'));
}
?>