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