Advertisement
Guest User

Untitled

a guest
May 14th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. class DoSponsor extends DataObject {
  4.    
  5.     private static $db = array(
  6.             'Name' => 'Varchar',
  7.             'Number' => 'Int',
  8.     );
  9.     private static $has_one = array(
  10.             'SponsorPage' => 'PghSponsors',
  11.     );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement