]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile.php
deny access to include files
[quix0rs-gnu-social.git] / classes / Profile.php
1 <?php
2 if (!defined('MICROBLOG')) { exit(1) }
3 /**
4  * Table Definition for profile
5  */
6 require_once 'DB/DataObject.php';
7
8 class Profile extends DB_DataObject 
9 {
10     ###START_AUTOCODE
11     /* the code below is auto generated do not remove the above tag */
12
13     public $__table = 'profile';                         // table name
14     public $id;                              // int(4)  primary_key not_null
15     public $nickname;                        // varchar(64)   not_null
16     public $fullname;                        // varchar(255)  
17     public $profileurl;                      // varchar(255)  
18     public $homepage;                        // varchar(255)  
19     public $bio;                             // varchar(140)  
20     public $location;                        // varchar(255)  
21     public $created;                         // datetime()   not_null
22     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
23
24     /* Static get */
25     function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Profile',$k,$v); }
26
27     /* the code above is auto generated do not remove the tag below */
28     ###END_AUTOCODE
29 }