We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f59a08 commit 96a464cCopy full SHA for 96a464c
tables/wp_bbp_users.sql
@@ -6,6 +6,8 @@
6
CREATE TABLE `wp_bbp_topics` (
7
`user_id` BIGINT UNSIGNED NOT NULL COMMENT 'Connects to ID in the wp_users table.',
8
`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,
11
INDEX `user_id` (`user_id`)
12
)
13
ENGINE = InnoDB;
0 commit comments