wp_bpec_groups_events

Static

Stores bpec groups events data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
group_idbigint(20)NO
event_idbigint(20)NO
🔑date_mappeddatetimeNO
group_idbigint(20)NO
event_idbigint(20)NO
user_idbigint(20)NO
inviter_idbigint(20)NO
statusvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE wp_bpec_groups_events ( id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, group_id bigint(20) NOT NULL, event_id bigint(20) NOT NULL, date_mapped datetime DEFAULT '0000-00-00 00:00:00' NOT NULL ) {$charset_collate};"; $sql[] = "CREATE TABLE wp_bpec_events_members ( id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, group_id bigint(20) NOT NULL, event_id bigint(20) NOT NULL, user_id bigint(20) NOT NULL, inviter_id bigint(20) NOT NULL, status varchar(255) DEFAULT NULL ) {$charset_collate};"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );

Safe to delete?

If you have uninstalled BP Events Calendar, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_bpec_groups_events`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from BP Events Calendar