wp_jbusinessdirectory_conference_session_registers

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑idintNO
session_idintNO
user_idintYES
statusintYES
last_updatedtimestampNO
joinedintNO

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_conference_session_registers` ( `id` int NOT NULL AUTO_INCREMENT, `session_id` int NOT NULL, `user_id` int DEFAULT NULL, `status` int DEFAULT NULL, `last_updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `joined` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_unique` (`user_id`,`session_id`), KEY `idx_status` (`status`) ) ENGINE

Safe to delete?

If you have uninstalled WP-BusinessDirectory – Business directory plugin for WordPress, 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_jbusinessdirectory_conference_session_registers`;

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

Other tables from WP-BusinessDirectory – Business directory plugin for WordPress