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


1
2
3
4
5
6
7
8
9
10
11
<?php
class Amenity extends ActiveRecord\Model
{
    static 
$table_name 'amenities';
    static 
$primary_key 'amenity_id';

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