a tiny mvc framework for php using php-activerecord
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 11 lines 182 B view raw
1<?php 2class Amenity extends ActiveRecord\Model 3{ 4 static $table_name = 'amenities'; 5 static $primary_key = 'amenity_id'; 6 7 static $has_many = array( 8 'property_amenities' 9 ); 10}; 11?>