X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FGroup_inbox.php;h=274f2b8f40fc1123770beab1e9503b76fd679e47;hb=67801a556610f89a60106c0074c42947967f3adf;hp=8f5c65e5946a24997c95670ab641d5fa2a4af39f;hpb=e36399974e6ccd1ee3e53bfffa3c34edaf8bd488;p=quix0rs-gnu-social.git diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php index 8f5c65e594..274f2b8f40 100644 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -3,7 +3,7 @@ /** * Table Definition for group_inbox */ -class Group_inbox extends Memcached_DataObject +class Group_inbox extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -13,15 +13,28 @@ class Group_inbox extends Memcached_DataObject public $notice_id; // int(4) primary_key not_null public $created; // datetime() not_null - /* Static get */ - - function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Group_inbox',$k,$v); } - /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function pkeyGet($kv) + public static function schemaDef() { - return Memcached_DataObject::pkeyGet('Group_inbox', $kv); + return array( + 'description' => 'Many-many table listing notices posted to a given group, or which groups a given notice was posted to.', + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group receiving the message'), + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), + ), + 'primary key' => array('group_id', 'notice_id'), + 'foreign keys' => array( + 'group_inbox_group_id_fkey' => array('user_group', array('group_id' => 'id')), + 'group_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + ), + 'indexes' => array( + 'group_inbox_created_idx' => array('created'), + 'group_inbox_notice_id_idx' => array('notice_id'), + 'group_inbox_group_id_created_notice_id_idx' => array('group_id', 'created', 'notice_id'), + ), + ); } }