a tiny mvc framework for php using php-activerecord
at v1 12 lines 240 B view raw
1<?php 2class Property extends ActiveRecord\Model 3{ 4 static $table_name = 'property'; 5 static $primary_key = 'property_id'; 6 7 static $has_many = array( 8 'property_amenities', 9 array('amenities', 'through' => 'property_amenities') 10 ); 11}; 12?>