Skip to content

Commit 96a464c

Browse files
authored
Update wp_bbp_users.sql
Topics and replies counts columns.
1 parent 6f59a08 commit 96a464c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tables/wp_bbp_users.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
CREATE TABLE `wp_bbp_topics` (
77
`user_id` BIGINT UNSIGNED NOT NULL COMMENT 'Connects to ID in the wp_users table.',
88
`last_posted` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
9+
`topic_count` INT UNSIGNED NOT NULL DEFAULT 0,
10+
`reply_count` INT UNSIGNED NOT NULL DEFAULT 0,
911
INDEX `user_id` (`user_id`)
1012
)
1113
ENGINE = InnoDB;

0 commit comments

Comments
 (0)