]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
forgot Group_member::schemaDef()
authorEvan Prodromou <evan@status.net>
Mon, 22 Aug 2011 22:02:29 +0000 (18:02 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 22 Aug 2011 22:02:29 +0000 (18:02 -0400)
classes/Group_member.php
db/core.php

index cc7e4a353ee955804e8d1746fa4d1b2fea25145d..0477e7629badd95af66cfeb2f202a3349880c506 100644 (file)
@@ -21,6 +21,30 @@ class Group_member extends Managed_DataObject
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
 
+    public static function schemaDef()
+    {
+        return array(
+            'fields' => array(
+                'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'),
+                'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'),
+                'is_admin' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this user an admin?'),
+
+                'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
+                'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
+            ),
+            'primary key' => array('group_id', 'profile_id'),
+            'foreign keys' => array(
+                'group_member_group_id_fkey' => array('user_group', array('group_id' => 'id')),
+                'group_member_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
+            ),
+            'indexes' => array(
+                // @fixme probably we want a (profile_id, created) index here?
+                'group_member_profile_id_idx' => array('profile_id'),
+                'group_member_created_idx' => array('created'),
+            ),
+        );
+    }
+
     function pkeyGet($kv)
     {
         return Memcached_DataObject::pkeyGet('Group_member', $kv);
index dd5c9a78783f86aa7df15a55b268d51b587b83d3..5841de43cfc54bd2d1c00ac7e25f97d71ed35819 100644 (file)
@@ -65,6 +65,7 @@ $classes = array('Profile',
                  'User_group',
                  'Related_group',
                  'Group_inbox',
+                 'Group_member',
                  'File',
                  'File_oembed',
                  'File_redirection',