Skip to:
Content

BuddyPress.org

Changeset 2088 for trunk/bp-groups.php


Ignore:
Timestamp:
11/13/2009 01:01:37 AM (14 years ago)
Author:
apeatling
Message:

Initial support for threaded activity stream commenting. Some major performance improvements around fetching profile and group data.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups.php

    r2077 r2088  
    110110            item_id bigint(20) NOT NULL,
    111111            user_id bigint(20) NOT NULL,
     112            parent_id bigint(20) NOT NULL,
    112113            content longtext NOT NULL,
    113114            date_posted datetime NOT NULL,
    114115            KEY item_id (item_id),
    115             KEY user_id (user_id)
     116            KEY user_id (user_id),
     117            KEY parent_id (parent_id)
    116118           ) {$charset_collate};";
    117119
Note: See TracChangeset for help on using the changeset viewer.