]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User_group.php
e8aaec744630a42ed394f874ae3c2828e1a0cb71
[quix0rs-gnu-social.git] / classes / User_group.php
1 <?php
2 /**
3  * Table Definition for user_group
4  */
5 require_once 'classes/Memcached_DataObject';
6
7 class User_group extends Memcached_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'user_group';                      // table name
13     public $id;                              // int(4)  primary_key not_null
14     public $nickname;                        // varchar(64)  unique_key
15     public $fullname;                        // varchar(255)
16     public $homepage;                        // varchar(255)
17     public $description;                     // varchar(140)
18     public $location;                        // varchar(255)
19     public $original_logo;                   // varchar(255)
20     public $homepage_logo;                   // varchar(255)
21     public $stream_logo;                     // varchar(255)
22     public $mini_logo;                       // varchar(255)
23     public $created;                         // datetime()   not_null
24     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
25
26     /* Static get */
27     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_group',$k,$v); }
28
29     /* the code above is auto generated do not remove the tag below */
30     ###END_AUTOCODE
31 }