]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile_tag_inbox.php
use notifyDeferred for tag/untag so that it gets queued offline
[quix0rs-gnu-social.git] / classes / Profile_tag_inbox.php
1 <?php
2 /**
3  * Table Definition for profile_tag_inbox
4  */
5
6 class Profile_tag_inbox extends Memcached_DataObject
7 {
8     ###START_AUTOCODE
9     /* the code below is auto generated do not remove the above tag */
10
11     public $__table = 'profile_tag_inbox';                     // table name
12     public $profile_tag_id;                        // int(4)  primary_key not_null
13     public $notice_id;                       // int(4)  primary_key not_null
14     public $created;                         // datetime()   not_null
15
16     /* Static get */
17
18     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Profile_tag_inbox',$k,$v); }
19
20     /* the code above is auto generated do not remove the tag below */
21     ###END_AUTOCODE
22
23     function pkeyGet($kv)
24     {
25         return Memcached_DataObject::pkeyGet('Profile_tag_inbox', $kv);
26     }
27 }