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