]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Group_inbox.php
Remove sequenceKey() since we now use Managed_DataObject
[quix0rs-gnu-social.git] / classes / Group_inbox.php
old mode 100755 (executable)
new mode 100644 (file)
index 8268896..0e01c20
@@ -1,10 +1,9 @@
 <?php
+
 /**
  * Table Definition for group_inbox
  */
-require_once 'classes/Memcached_DataObject';
-
-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 */
@@ -15,8 +14,35 @@ class Group_inbox extends Memcached_DataObject
     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
+
+    public static function schemaDef()
+    {
+        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'),
+            ),
+        );
+    }
+
+    function pkeyGet($kv)
+    {
+        return Memcached_DataObject::pkeyGet('Group_inbox', $kv);
+    }
 }