Membership.php 496 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Membership 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 Membership extends \Micro\ORM
  13. {
  14. public static $table = 'membership';
  15. public static $foreign_key = 'membership_id';
  16. public static $belongs_to = array(
  17. 'student' => '\Model\Student',
  18. 'club' => '\Model\Club',
  19. );
  20. }