Car.php 442 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Car Model
  4. *
  5. * @package MicroMVC
  6. * @author David Pennington
  7. * @copyright (c) 2011 MicroMVC Framework
  8. * @license http://micromvc.com/license
  9. ********************************** 80 Columns *********************************
  10. */
  11. namespace Model;
  12. class Car extends \Micro\ORM
  13. {
  14. public static $table = 'car';
  15. public static $foreign_key = 'car_id';
  16. public static $belongs_to = array(
  17. 'student' => '\Model\Student',
  18. );
  19. }