1 2 3 4 5 6 7 8 9 10 11
<?phpclass Amenity extends ActiveRecord\Model{ static $table_name = 'amenities'; static $primary_key = 'amenity_id'; static $has_many = array( 'property_amenities' );};?>