Property.php 240 B

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