diff --git bp-core/admin/bp-core-schema.php bp-core/admin/bp-core-schema.php
index f98702e..cb2dada 100644
|
|
function bp_core_install_activity_streams() { |
89 | 89 | action text NOT NULL, |
90 | 90 | content longtext NOT NULL, |
91 | 91 | primary_link varchar(150) NOT NULL, |
92 | | item_id varchar(75) NOT NULL, |
93 | | secondary_item_id varchar(75) DEFAULT NULL, |
| 92 | item_id bigint(20) NOT NULL, |
| 93 | secondary_item_id bigint(20) DEFAULT NULL, |
94 | 94 | date_recorded datetime NOT NULL, |
95 | 95 | hide_sitewide bool DEFAULT 0, |
96 | 96 | mptt_left int(11) NOT NULL DEFAULT 0, |
diff --git bp-loader.php bp-loader.php
index e454d87..10afa74 100644
|
|
class BuddyPress { |
57 | 57 | /** |
58 | 58 | * @var int Database version of current BuddyPress files |
59 | 59 | */ |
60 | | public $db_version = 5249; |
| 60 | public $db_version = 5250; |
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @var int Database version raw from database connection |