Skip to content

Commit 6f59a08

Browse files
authored
Create wp_bbp_users.sql
1 parent 06b179d commit 6f59a08

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tables/wp_bbp_users.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)