/var/www/(Del)gepgroup.hk/php-activerecord/test/models/Property.php


1
2
3
4
5
6
7
8
9
10
11
12
<?php
class Property extends ActiveRecord\Model
{
    static 
$table_name 'property';
    static 
$primary_key 'property_id';

    static 
$has_many = array(
        
'property_amenities',
        array(
'amenities''through' => 'property_amenities')
    );
};
?>