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


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

    static 
$belongs_to = array(
        
'amenity',
        
'property'
    
);
};
?>