PropertyAmenity.php 196 B

123456789101112
  1. <?php
  2. class PropertyAmenity extends ActiveRecord\Model
  3. {
  4. static $table_name = 'property_amenities';
  5. static $primary_key = 'id';
  6. static $belongs_to = array(
  7. 'amenity',
  8. 'property'
  9. );
  10. };
  11. ?>