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 06b179d commit 6f59a08Copy full SHA for 6f59a08
tables/wp_bbp_users.sql
@@ -0,0 +1,11 @@
1
+/* bbp_users
2
+ this table includes columns based on the meta_keys saved for each user into the wp_usermet,
3
+ and it has indexes on each ID based column.
4
+*/
5
+
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
+ INDEX `user_id` (`user_id`)
10
+)
11
+ENGINE = InnoDB;
0 commit comments